summaryrefslogtreecommitdiff
path: root/pygments/lexers/functional.py
diff options
context:
space:
mode:
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),