diff options
author | Tim Hatch <tim@timhatch.com> | 2014-10-15 22:46:09 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-10-15 22:46:09 -0700 |
commit | 9d8ee43c77a6d0bf172ae09d31a7c249ed37f925 (patch) | |
tree | 3ffebe276a12c32d078a76dffd50bbaabebd5ffb /pygments/lexers/graphics.py | |
parent | 86c2eee37cf292677032e02f553710d4c1eb1f04 (diff) | |
download | pygments-9d8ee43c77a6d0bf172ae09d31a7c249ed37f925.tar.gz |
Curly brace escaping, round 2.
These were all pointed out by regexlint but required manual effort to track down
(indicator.py was confused by most of them being produced by expressions).
Also comment out some iffy comment patterns.
Diffstat (limited to 'pygments/lexers/graphics.py')
-rw-r--r-- | pygments/lexers/graphics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/graphics.py b/pygments/lexers/graphics.py index 4ed12705..7cf1c5b7 100644 --- a/pygments/lexers/graphics.py +++ b/pygments/lexers/graphics.py @@ -240,7 +240,7 @@ class AsymptoteLexer(RegexLexer): (r'((?:[\w*\s])+?(?:\s|\*))' # return arguments r'([a-zA-Z_]\w*)' # method name r'(\s*\([^;]*?\))' # signature - r'(' + _ws + r')({)', + r'(' + _ws + r')(\{)', bygroups(using(this), Name.Function, using(this), using(this), Punctuation), 'function'), |