summaryrefslogtreecommitdiff
path: root/pygments/lexers/dylan.py
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2014-10-04 11:06:28 -0700
committerTim Hatch <tim@timhatch.com>2014-10-04 11:06:28 -0700
commit900ce2be770ce98e7a93d5e687ae6a0184b2015c (patch)
tree79326f0131a31ddb903294f2e21973a7de1c6a6a /pygments/lexers/dylan.py
parent9bfaf9454e6301a6b5da0c30f4ca029c1f227a97 (diff)
downloadpygments-900ce2be770ce98e7a93d5e687ae6a0184b2015c.tar.gz
Fix minor problems noted by regexlint and 'make check'
Diffstat (limited to 'pygments/lexers/dylan.py')
-rw-r--r--pygments/lexers/dylan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/dylan.py b/pygments/lexers/dylan.py
index 238bfe90..b4f2a976 100644
--- a/pygments/lexers/dylan.py
+++ b/pygments/lexers/dylan.py
@@ -160,7 +160,7 @@ class DylanLexer(RegexLexer):
(r'\?' + valid_name, Name.Tag),
# Punctuation
- (r'(=>|::|#\(|#\[|##|\?|\?\?|\?=|[(){}\[\],\.;])', Punctuation),
+ (r'(=>|::|#\(|#\[|##|\?\?|\?=|\?|[(){}\[\],\.;])', Punctuation),
# Most operators are picked up as names and then re-flagged.
# This one isn't valid in a name though, so we pick it up now.