diff options
Diffstat (limited to 'pygments/lexers/graphics.py')
-rw-r--r-- | pygments/lexers/graphics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/graphics.py b/pygments/lexers/graphics.py index bed5f182..4ed12705 100644 --- a/pygments/lexers/graphics.py +++ b/pygments/lexers/graphics.py @@ -263,8 +263,8 @@ class AsymptoteLexer(RegexLexer): include('whitespace'), include('statements'), (';', Punctuation), - ('{', Punctuation, '#push'), - ('}', Punctuation, '#pop'), + (r'\{', Punctuation, '#push'), + (r'\}', Punctuation, '#pop'), ], 'string': [ (r"'", String, '#pop'), |