diff options
author | Georg Brandl <georg@python.org> | 2010-01-02 22:22:38 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-02 22:22:38 +0100 |
commit | d9add5a91286658222b45ecda55bcc34b53f1625 (patch) | |
tree | cad9f534ab2729f9b032b0f66e1d6a6990ca47f9 /pygments/lexers/functional.py | |
parent | 8f4be9fbf50638a43d7d5b05bce38c7335b49b15 (diff) | |
download | pygments-d9add5a91286658222b45ecda55bcc34b53f1625.tar.gz |
Fix more potential instances of #462.
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r-- | pygments/lexers/functional.py | 2 |
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), |