summaryrefslogtreecommitdiff
path: root/pygments/lexers/parsers.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2009-09-11 15:16:16 +0200
committergbrandl <devnull@localhost>2009-09-11 15:16:16 +0200
commit62a15a609483430c0770a3c152f069954ed83c76 (patch)
treeae4dc0ebb35c3ab020076b01e4e153c51abfd15b /pygments/lexers/parsers.py
parentacdc154512fa4702fd6fed526ea1e0bbc62759cd (diff)
downloadpygments-62a15a609483430c0770a3c152f069954ed83c76.tar.gz
Make make check happy.
Diffstat (limited to 'pygments/lexers/parsers.py')
-rw-r--r--pygments/lexers/parsers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/parsers.py b/pygments/lexers/parsers.py
index f967132a..5d7118aa 100644
--- a/pygments/lexers/parsers.py
+++ b/pygments/lexers/parsers.py
@@ -440,7 +440,8 @@ class AntlrLexer(RegexLexer):
include('whitespace'),
include('comments'),
(r'{', Punctuation),
- (r'(' + _TOKEN_REF + r')(\s*)(=)?(\s*)(' + _STRING_LITERAL + ')?(\s*)(;)',
+ (r'(' + _TOKEN_REF + r')(\s*)(=)?(\s*)(' + _STRING_LITERAL
+ + ')?(\s*)(;)',
bygroups(Name.Label, Whitespace, Punctuation, Whitespace,
String, Whitespace, Punctuation)),
(r'}', Punctuation, '#pop'),