summaryrefslogtreecommitdiff
path: root/pygments/lexers/functional.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-01-02 22:22:38 +0100
committerGeorg Brandl <georg@python.org>2010-01-02 22:22:38 +0100
commitd9add5a91286658222b45ecda55bcc34b53f1625 (patch)
treecad9f534ab2729f9b032b0f66e1d6a6990ca47f9 /pygments/lexers/functional.py
parent8f4be9fbf50638a43d7d5b05bce38c7335b49b15 (diff)
downloadpygments-d9add5a91286658222b45ecda55bcc34b53f1625.tar.gz
Fix more potential instances of #462.
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r--pygments/lexers/functional.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py
index 5c035bb9..8431ba33 100644
--- a/pygments/lexers/functional.py
+++ b/pygments/lexers/functional.py
@@ -245,7 +245,7 @@ class CommonLispLexer(RegexLexer):
(r'#\d*Y.*$', Comment.Special),
# strings and characters
- (r'"(\\.|[^"])*"', String),
+ (r'"(\\.|[^"\\])*"', String),
# quoting
(r":" + symbol, String.Symbol),
(r"'" + symbol, String.Symbol),