diff options
author | Camil Staps <info@camilstaps.nl> | 2016-03-02 23:04:25 +0100 |
---|---|---|
committer | Camil Staps <info@camilstaps.nl> | 2016-03-02 23:04:25 +0100 |
commit | e9e89c7a16f17ea7e77d20902adcd154522bdbb8 (patch) | |
tree | 5a468fbe1ee725a135e257988ba30ded0fe85454 | |
parent | 3c826b0b3fb0800ef9de05f89027f20d5a7479a8 (diff) | |
download | pygments-e9e89c7a16f17ea7e77d20902adcd154522bdbb8.tar.gz |
NuSMV: Removed last \b
-rw-r--r-- | pygments/lexers/smv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/smv.py b/pygments/lexers/smv.py index 17b5e4f4..76a4c379 100644 --- a/pygments/lexers/smv.py +++ b/pygments/lexers/smv.py @@ -39,7 +39,7 @@ class NuSMVLexer(RegexLexer): 'COMPASSION','ISA','ASSIGN','CONSTRAINT','SIMPWFF','CTLWFF', 'LTLWFF','PSLWFF','COMPWFF','IN','MIN','MAX','MIRROR','PRED', 'PREDICATES'), suffix=r'(?![\w$#-])'), Keyword.Declaration), - (r'\bprocess\b', Keyword), + (r'process(?![\w$#-])', Keyword), (words(('array','of','boolean','integer','real','word'), suffix=r'(?![\w$#-])'), Keyword.Type), (words(('case','esac'), suffix=r'(?![\w$#-])'), Keyword), |