diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2011-06-07 14:09:28 +0200 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2011-06-07 14:09:28 +0200 |
commit | ce7e3337d30016b1622a3219ba14150cf62d9f9d (patch) | |
tree | 1d0403410cb8d750e27fb62a7898dc841dec63a5 | |
parent | 7fe4bea78b41a80e4370457e89ba99b82e5b150d (diff) | |
download | pygments-ce7e3337d30016b1622a3219ba14150cf62d9f9d.tar.gz |
Even more keywords for pypy.
-rw-r--r-- | pygments/lexers/pypylog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py index ac9c33a1..e249954c 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -49,7 +49,7 @@ class PyPyLogLexer(RegexLexer): r"arraylen_gc|" r"getarrayitem_gc_pure|getarrayitem_gc|setarrayitem_gc|getarrayitem_raw|setarrayitem_raw|" r"getfield_gc_pure|getfield_gc|getfield_raw|setfield_gc|setfield_raw|" - r"guard_true|guard_false|guard_value|guard_isnull|guard_nonnull_class|guard_class|guard_no_overflow|guard_not_forced|guard_no_exception)", Name.Builtin), + r"guard_true|guard_false|guard_value|guard_isnull|guard_nonnull_class|guard_nonnull|guard_class|guard_no_overflow|guard_not_forced|guard_no_exception|guard_not_invalidated)", Name.Builtin), include("extra-stuff"), ], "jit-backend-counts": [ |