diff options
author | Tim Hatch <tim@timhatch.com> | 2012-08-27 00:36:21 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2012-08-27 00:36:21 -0700 |
commit | 695b7ed5c5bd141320b50fdd4e9db2cd07046e94 (patch) | |
tree | ff2d0c8f7ea138bfb4c87a4dc04540969677e05a /pygments/lexers/functional.py | |
parent | 08ad16c5ad5e80dfddd7ae81e368227e6bb6b989 (diff) | |
download | pygments-695b7ed5c5bd141320b50fdd4e9db2cd07046e94.tar.gz |
Remove unnecessary flags from Racket and Jags lexers; fix repetition bug.
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r-- | pygments/lexers/functional.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py index 55b28e7c..f77b918c 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -479,7 +479,7 @@ class RacketLexer(RegexLexer): tokens = { 'root' : [ (r';.*$', Comment.Single), - (r'(?ms)#\|[^|]+\|#', Comment.Multiline), # ?s = . matches newline + (r'#\|[^|]+\|#', Comment.Multiline), # whitespaces - usually not relevant (r'\s+', Text), |