summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Wood <brad@bradwood.com>2014-02-11 11:40:40 -0600
committerBrad Wood <brad@bradwood.com>2014-02-11 11:40:40 -0600
commit8933293777f9a35241459905b50cc3fdbd301dd7 (patch)
treecc991d00d5d4099cc7558384908a9da79818e777
parentc8919c3045fd56c095c324b822ab60deab4cf40b (diff)
downloadpygments-8933293777f9a35241459905b50cc3fdbd301dd7.tar.gz
Additional keyword constants.
-rw-r--r--pygments/lexers/templates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py
index 5caa44e3..9306b660 100644
--- a/pygments/lexers/templates.py
+++ b/pygments/lexers/templates.py
@@ -1499,7 +1499,7 @@ class ColdfusionLexer(RegexLexer):
(r'\d+', Number),
(r'(if|else|len|var|case|default|break|switch|component|property|function|do|try|catch|in|continue|for|return|while)\b', Keyword),
(r'(required|any|array|binary|boolean|component|date|guid|numeric|query|string|struct|uuid|xml)\b', Keyword),
- #(r'(true|false|null)\b', Keyword.Constant),
+ (r'(true|false|null)\b', Keyword.Constant),
(r'([A-Za-z_$][A-Za-z0-9_.]*)(\s*)(\()',
bygroups(Name.Function, Text, Punctuation)),
(r'[A-Za-z_$][A-Za-z0-9_.]*', Name.Variable),