summaryrefslogtreecommitdiff
path: root/pygments/lexers/inferno.py
diff options
context:
space:
mode:
authorAnteru <bitbucket@ca.sh13.net>2018-12-13 18:54:40 +0000
committerAnteru <bitbucket@ca.sh13.net>2018-12-13 18:54:40 +0000
commit9ff8604acaf3e3713a9dab75d4d66e6b5a0fcac4 (patch)
tree5f82ee331982e3ca02074251b296e061f80194da /pygments/lexers/inferno.py
parentf333e139fb4b2217df2f4d085e1f48fc7c0480ef (diff)
parentad4dcbb58826c360ee75747d6abface552695bff (diff)
downloadpygments-9ff8604acaf3e3713a9dab75d4d66e6b5a0fcac4.tar.gz
Merged in sanssecours/pygments-main (pull request #724)
YAML: Fix recognition of Non-Specific Tag
Diffstat (limited to 'pygments/lexers/inferno.py')
-rw-r--r--pygments/lexers/inferno.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/inferno.py b/pygments/lexers/inferno.py
index 5fc5a0ba..0d68856d 100644
--- a/pygments/lexers/inferno.py
+++ b/pygments/lexers/inferno.py
@@ -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'),