summaryrefslogtreecommitdiff
path: root/pygments/lexers/templates.py
diff options
context:
space:
mode:
authorGaurav Jain <gaurav@gauravjain.org>2014-05-15 23:20:38 -0400
committerGaurav Jain <gaurav@gauravjain.org>2014-05-15 23:20:38 -0400
commitcf473924c5aa0268cb9e78cff6809a509a94169a (patch)
treea45db220ea84e8b5a8969799a04d0b028d366739 /pygments/lexers/templates.py
parent455118b5ccd5538b727daec1b6b8e7b5ee85ef22 (diff)
downloadpygments-cf473924c5aa0268cb9e78cff6809a509a94169a.tar.gz
Overlap due to case insensitive mode
Diffstat (limited to 'pygments/lexers/templates.py')
-rw-r--r--pygments/lexers/templates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py
index 25f53585..4d53dca6 100644
--- a/pygments/lexers/templates.py
+++ b/pygments/lexers/templates.py
@@ -1504,9 +1504,9 @@ class ColdfusionLexer(RegexLexer):
(r'(true|false|null)\b', Keyword.Constant),
(r'(application|session|client|cookie|super|this|variables|arguments)\b',
Name.Constant),
- (r'([A-Za-z_$][\w.]*)(\s*)(\()',
+ (r'([a-z_$][\w.]*)(\s*)(\()',
bygroups(Name.Function, Text, Punctuation)),
- (r'[A-Za-z_$][\w.]*', Name.Variable),
+ (r'[a-z_$][\w.]*', Name.Variable),
(r'[()\[\]{};:,.\\]', Punctuation),
(r'\s+', Text),
],