diff options
author | Georg Brandl <georg@python.org> | 2014-11-06 14:00:28 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-11-06 14:00:28 +0100 |
commit | c863ac19ce4d591b93be8b36cb69b04422c8dc9f (patch) | |
tree | 98bd701a6fb0da18d92897960eabdd9a139ad7d4 /pygments/lexers/graph.py | |
parent | 90fe03b0f663810f4b6718d89b5e830ec2c67960 (diff) | |
download | pygments-c863ac19ce4d591b93be8b36cb69b04422c8dc9f.tar.gz |
Simplify charclasses in the remaining modules
Diffstat (limited to 'pygments/lexers/graph.py')
-rw-r--r-- | pygments/lexers/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/graph.py b/pygments/lexers/graph.py index 04ec3262..61373631 100644 --- a/pygments/lexers/graph.py +++ b/pygments/lexers/graph.py @@ -66,7 +66,7 @@ class CypherLexer(RegexLexer): (r'[.*{}]', Punctuation), ], 'strings': [ - (r'"(?:\\[tbnrf\'\"\\]|[^\\"])*"', String), + (r'"(?:\\[tbnrf\'"\\]|[^\\"])*"', String), (r'`(?:``|[^`])+`', Name.Variable), ], 'whitespace': [ |