diff options
author | Georg Brandl <georg@python.org> | 2010-03-01 18:43:05 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-01 18:43:05 +0100 |
commit | ce802b6aea5f21efa06c61dacb54be7a6d79e966 (patch) | |
tree | bc0a6d8decebd270def7de51984f9ffaead1058f /pygments/lexers/agile.py | |
parent | 3ea85f2033e3e6f1a719bd8bba420ca457f9feb0 (diff) | |
download | pygments-ce802b6aea5f21efa06c61dacb54be7a6d79e966.tar.gz |
Clojure: Recognize \# correctly.
Diffstat (limited to 'pygments/lexers/agile.py')
-rw-r--r-- | pygments/lexers/agile.py | 2 |
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), |