diff options
author | gbrandl <devnull@localhost> | 2008-11-09 18:03:40 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2008-11-09 18:03:40 +0100 |
commit | 7723b5569aba42a90305274ee46700fcb3db16b1 (patch) | |
tree | 606ba0e07ba357974e0144a7b4855e40f5fb2e7f | |
parent | d875fa32b82f8db6e67eac0d4d32cdddc418932f (diff) | |
download | pygments-7723b5569aba42a90305274ee46700fcb3db16b1.tar.gz |
Update from Jarrett.
-rw-r--r-- | pygments/lexers/agile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index ad17e5d9..31a00747 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -1115,9 +1115,9 @@ class MiniDLexer(RegexLexer): (r'/(\\\n)?[*](.|\n)*?[*](\\\n)?/', Comment), (r'/\+', Comment, 'nestedcomment'), # Keywords - (r'(as|assert|break|case|catch|continue|coroutine|default' + (r'(as|assert|break|case|catch|class|continue|coroutine|default' r'|do|else|finally|for|foreach|function|global|namespace' - r'|if|import|in|is|local|module|object|return|super|switch' + r'|if|import|in|is|local|module|return|super|switch' r'|this|throw|try|vararg|while|with|yield)\b', Keyword), (r'(false|true|null)\b', Keyword.Constant), # FloatLiteral |