diff options
author | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2013-02-07 02:27:40 -0500 |
---|---|---|
committer | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2013-02-07 02:27:40 -0500 |
commit | b35ff8d55fc717fe49e034bd202b6fe1b048abb2 (patch) | |
tree | b8b8df770d2c30997010eb0f8b4662711f76dafd /pygments/lexers/math.py | |
parent | f8d3d49805b9d81363812bbbdaae693658d442ef (diff) | |
download | pygments-b35ff8d55fc717fe49e034bd202b6fe1b048abb2.tar.gz |
update StanLexer to Stan 1.1.1, more
Diffstat (limited to 'pygments/lexers/math.py')
-rw-r--r-- | pygments/lexers/math.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index c3dd90a6..531a2030 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -1352,7 +1352,7 @@ class StanLexer(RegexLexer): % r'|'.join(_stan_builtins.CONSTANTS), Keyword.Constant), # Special names ending in __, like lp__ (r'[A-Za-z][A-Za-z0-9_]*__\b', Name.Builtin.Pseudo), - ('%s\b' % r'|'.join(_stan_builtins.CPP_RESERVED), Error), + ('%s\b' % r'|'.join(_stan_builtins.CPP_RESERVED), Keyword.Reserved), # Regular variable names (r'[A-Za-z][A-Za-z0-9_]*\b', Name), # Real Literals |