summaryrefslogtreecommitdiff
path: root/pygments/lexers/jvm.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-08-19 09:56:18 +0200
committerGeorg Brandl <georg@python.org>2012-08-19 09:56:18 +0200
commit49d0922ba75a209771ad57d5b9f26ae83896bf89 (patch)
tree396672c44dfcb3a8127ca36c857031c166219a0e /pygments/lexers/jvm.py
parent5abd33c6766c9612c9854eb513f6963ea1d00c3d (diff)
parentebfece1dc1fa6f29a70cd8e7f5ab389edc2c4f5e (diff)
downloadpygments-49d0922ba75a209771ad57d5b9f26ae83896bf89.tar.gz
merge with branch-close commit
Diffstat (limited to 'pygments/lexers/jvm.py')
-rw-r--r--pygments/lexers/jvm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/jvm.py b/pygments/lexers/jvm.py
index b56d4582..64338e46 100644
--- a/pygments/lexers/jvm.py
+++ b/pygments/lexers/jvm.py
@@ -644,7 +644,7 @@ class ClojureLexer(RegexLexer):
(r"\\(.|[a-z]+)", String.Char),
# keywords
- (r':' + valid_name, String.Symbol),
+ (r'::?' + valid_name, String.Symbol),
# special operators
(r'~@|[`\'#^~&]', Operator),