diff options
author | Georg Brandl <georg@python.org> | 2011-07-10 11:25:52 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-07-10 11:25:52 +0200 |
commit | f3e8b8d560d0e90914ef43bbe196bc92be0c86fb (patch) | |
tree | 6eb21d7c58923151463c44f25a40a5ed4060d9a2 | |
parent | 9d122735d1b45cf178f7ff42882ac836c7741cef (diff) | |
download | pygments-f3e8b8d560d0e90914ef43bbe196bc92be0c86fb.tar.gz |
Add new keyword.
-rw-r--r-- | pygments/lexers/other.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index e799bbdd..9c6209a1 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -850,8 +850,8 @@ class LogtalkLexer(RegexLexer): # Other arithmetic functors (r'(cos|atan|exp|log|s(in|qrt))(?=[(])', Keyword), # Term testing - (r'(var|atom(ic)?|integer|float|c(allable|ompound)|n(onvar|umber))' - r'(?=[(])', Keyword), + (r'(var|atom(ic)?|integer|float|c(allable|ompound)|n(onvar|umber)|' + r'ground)(?=[(])', Keyword), # Term comparison (r'compare(?=[(])', Keyword), # Stream selection and control |