diff options
Diffstat (limited to 'pygments/lexers/math.py')
-rw-r--r-- | pygments/lexers/math.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index 9f4c62af..9f7efb3b 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -676,7 +676,6 @@ class ScilabLexer(RegexLexer): # operators requiring escape for re: (r'\.\*|\*|\+|\.\^|\.\\|\.\/|\/|\\', Operator), - # punctuation: (r'[\[\](){}:@.,=:;]', Punctuation), @@ -692,6 +691,7 @@ class ScilabLexer(RegexLexer): ], 'string': [ (r"[^']*'", String, '#pop'), + (r'.', String, '#pop'), ], 'deffunc': [ (r'(\s*)(?:(.+)(\s*)(=)(\s*))?(.+)(\()(.*)(\))(\s*)', |