diff options
author | Georg Brandl <georg@python.org> | 2013-04-05 09:04:33 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-05 09:04:33 +0200 |
commit | e3a78c5d8d322c10d456ff29ab8d6f08a0a061e3 (patch) | |
tree | af39e371f14b29b3508c75f5af9c3cbdbfd4e05d /pygments/lexers/functional.py | |
parent | 325a7f391af3e449a8ee20f24403da45f3149211 (diff) | |
parent | 391833e144e961937abe20adfe6b67b1b14ea993 (diff) | |
download | pygments-e3a78c5d8d322c10d456ff29ab8d6f08a0a061e3.tar.gz |
Merged in gentoo90/pygments-main (pull request #167)
Minor fixes for RPMSpec and NSIS lexers
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r-- | pygments/lexers/functional.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py index a082811b..889e7ec6 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -1663,9 +1663,10 @@ class OpaLexer(RegexLexer): # but if you color only real keywords, you might just # as well not color anything keywords = [ - 'and', 'as', 'begin', 'css', 'database', 'db', 'do', 'else', 'end', - 'external', 'forall', 'if', 'import', 'match', 'package', 'parser', - 'rec', 'server', 'then', 'type', 'val', 'with', 'xml_parser', + 'and', 'as', 'begin', 'case', 'client', 'css', 'database', 'db', 'do', + 'else', 'end', 'external', 'forall', 'function', 'if', 'import', + 'match', 'module', 'or', 'package', 'parser', 'rec', 'server', 'then', + 'type', 'val', 'with', 'xml_parser', ] # matches both stuff and `stuff` |