summaryrefslogtreecommitdiff
path: root/pygments/lexers/inferno.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/inferno.py')
-rw-r--r--pygments/lexers/inferno.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/inferno.py b/pygments/lexers/inferno.py
index bfbea571..0d68856d 100644
--- a/pygments/lexers/inferno.py
+++ b/pygments/lexers/inferno.py
@@ -5,7 +5,7 @@
Lexers for Inferno os and all the related stuff.
- :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
@@ -64,7 +64,7 @@ class LimboLexer(RegexLexer):
(r'(byte|int|big|real|string|array|chan|list|adt'
r'|fn|ref|of|module|self|type)\b', Keyword.Type),
(r'(con|iota|nil)\b', Keyword.Constant),
- ('[a-zA-Z_]\w*', Name),
+ (r'[a-zA-Z_]\w*', Name),
],
'statement' : [
include('whitespace'),