summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2011-06-07 14:05:14 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2011-06-07 14:05:14 +0200
commit5e142f963196d110a602c61c52d300ffa630703b (patch)
treecf41f6afae88a1144b2c3759848f4d7515cebf11
parenteba3cc135dc5fd38b65f9f6ae786d431324d5f35 (diff)
downloadpygments-5e142f963196d110a602c61c52d300ffa630703b.tar.gz
Small update to the pypy lexer for missing words.
-rw-r--r--pygments/lexers/pypylog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py
index 85cb271c..ac9c33a1 100644
--- a/pygments/lexers/pypylog.py
+++ b/pygments/lexers/pypylog.py
@@ -47,7 +47,7 @@ class PyPyLogLexer(RegexLexer):
r"call_may_force|call_assembler|call|"
r"new_with_vtable|new_array|"
r"arraylen_gc|"
- r"getarrayitem_gc|setarrayitem_gc|getarrayitem_raw|setarrayitem_raw|"
+ 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),
include("extra-stuff"),