diff options
author | Greg Hendershott <greghendershott@gmail.com> | 2013-07-18 09:15:22 -0400 |
---|---|---|
committer | Greg Hendershott <greghendershott@gmail.com> | 2013-07-18 09:15:22 -0400 |
commit | efb9c5f752ecb0a73f1f677edfc786c9aec5442a (patch) | |
tree | 0b4cc041d44f85e335cf83a3a96872a2dc455a2f | |
parent | 1ea0fa53d253eae501f0a48611dd01493240b34d (diff) | |
download | pygments-efb9c5f752ecb0a73f1f677edfc786c9aec5442a.tar.gz |
Add Unicode prefix to lambda string literal in Racket lexer: u'?'
-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 770e6bd9..22220075 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -71,7 +71,7 @@ class RacketLexer(RegexLexer): 'syntax/loc', 'time', 'transcript-off', 'transcript-on', 'unless', 'unquote', 'unquote-splicing', 'unsyntax', 'unsyntax-splicing', 'when', 'with-continuation-mark', 'with-handlers', - 'with-handlers*', 'with-syntax', 'λ' + 'with-handlers*', 'with-syntax', u'λ' ] # From namespace-mapped-symbols |