diff options
author | Georg Brandl <georg@python.org> | 2014-03-04 18:48:36 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-04 18:48:36 +0100 |
commit | 87cf3e1a72b8b0c031afbff4f8effd9661bef8a3 (patch) | |
tree | cc03c3abf23ca52db10958e244d2d1073c8d9098 /pygments/lexers/functional.py | |
parent | 31e74c08558cbcf0cdcac34803a60fbbea220e3c (diff) | |
parent | ff32b37c05f9bae70427bc58212a45e039fa9966 (diff) | |
download | pygments-87cf3e1a72b8b0c031afbff4f8effd9661bef8a3.tar.gz |
merge
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 46e8ef02..ade26e97 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -1058,7 +1058,7 @@ class IdrisLexer(RegexLexer): (r'--(?![!#$%&*+./<=>?@\^|_~:\\]).*?$', Comment.Single), (r'{-', Comment.Multiline, 'comment'), # Identifiers - (ur'\b(%s)(?!\')\b' % '|'.join(reserved), Keyword.Reserved), + (r'\b(%s)(?!\')\b' % '|'.join(reserved), Keyword.Reserved), (r'(import|module)(\s+)', bygroups(Keyword.Reserved, Text), 'module'), (r"('')?[A-Z][\w\']*", Keyword.Type), (r'[a-z][A-Za-z0-9_\']*', Text), |