summaryrefslogtreecommitdiff
path: root/pygments/lexers/agile.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-03-01 18:43:05 +0100
committerGeorg Brandl <georg@python.org>2010-03-01 18:43:05 +0100
commitce802b6aea5f21efa06c61dacb54be7a6d79e966 (patch)
treebc0a6d8decebd270def7de51984f9ffaead1058f /pygments/lexers/agile.py
parent3ea85f2033e3e6f1a719bd8bba420ca457f9feb0 (diff)
downloadpygments-ce802b6aea5f21efa06c61dacb54be7a6d79e966.tar.gz
Clojure: Recognize \# correctly.
Diffstat (limited to 'pygments/lexers/agile.py')
-rw-r--r--pygments/lexers/agile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py
index c9b57583..ea605404 100644
--- a/pygments/lexers/agile.py
+++ b/pygments/lexers/agile.py
@@ -1438,7 +1438,7 @@ class ClojureLexer(RegexLexer):
# strings, symbols and characters
(r'"(\\\\|\\"|[^"])*"', String),
(r"'" + valid_name, String.Symbol),
- (r"\\([()/'\".'_!§$%& ?;=+-]{1}|[a-zA-Z0-9]+)", String.Char),
+ (r"\\([()/'\".'_!§$%& ?;=#+-]{1}|[a-zA-Z0-9]+)", String.Char),
# constants
(r'(#t|#f)', Name.Constant),