diff options
| author | Tim Hatch <tim@timhatch.com> | 2014-10-15 22:46:09 -0700 |
|---|---|---|
| committer | Tim Hatch <tim@timhatch.com> | 2014-10-15 22:46:09 -0700 |
| commit | 9d8ee43c77a6d0bf172ae09d31a7c249ed37f925 (patch) | |
| tree | 3ffebe276a12c32d078a76dffd50bbaabebd5ffb /pygments/lexers/modeling.py | |
| parent | 86c2eee37cf292677032e02f553710d4c1eb1f04 (diff) | |
| download | pygments-9d8ee43c77a6d0bf172ae09d31a7c249ed37f925.tar.gz | |
Curly brace escaping, round 2.
These were all pointed out by regexlint but required manual effort to track down
(indicator.py was confused by most of them being produced by expressions).
Also comment out some iffy comment patterns.
Diffstat (limited to 'pygments/lexers/modeling.py')
| -rw-r--r-- | pygments/lexers/modeling.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/modeling.py b/pygments/lexers/modeling.py index c2b365b3..02e2936e 100644 --- a/pygments/lexers/modeling.py +++ b/pygments/lexers/modeling.py @@ -309,7 +309,7 @@ class StanLexer(RegexLexer): # block start include('whitespace'), # Block start - (r'(%s)(\s*)({)' % + (r'(%s)(\s*)(\{)' % r'|'.join(('functions', 'data', r'transformed\s+?data', 'parameters', r'transformed\s+parameters', 'model', r'generated\s+quantities')), |
