diff options
author | Georg Brandl <georg@python.org> | 2014-01-09 17:21:08 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-01-09 17:21:08 +0100 |
commit | e6aa1888047f589f1f57e417702ed01683869214 (patch) | |
tree | 8b5cf4da6bc71e7db77cad484b7c1f1f326d66da | |
parent | 61936d7d0bff110a42288fd692c20e6b0c04d3a8 (diff) | |
parent | efb9c5f752ecb0a73f1f677edfc786c9aec5442a (diff) | |
download | pygments-e6aa1888047f589f1f57e417702ed01683869214.tar.gz |
Merged in greghendershott/pygments-main/fix-racket-lambda (pull request #218)
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 c60f3a9e..5535fff7 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 |