summaryrefslogtreecommitdiff
path: root/pygments/lexers/automation.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/automation.py')
-rw-r--r--pygments/lexers/automation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/automation.py b/pygments/lexers/automation.py
index 2ebc4d24..3ef42e48 100644
--- a/pygments/lexers/automation.py
+++ b/pygments/lexers/automation.py
@@ -5,7 +5,7 @@
Lexers for automation scripting languages.
- :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.
"""
@@ -31,8 +31,8 @@ class AutohotkeyLexer(RegexLexer):
'root': [
(r'^(\s*)(/\*)', bygroups(Text, Comment.Multiline), 'incomment'),
(r'^(\s*)(\()', bygroups(Text, Generic), 'incontinuation'),
- (r'\s+;.*?$', Comment.Singleline),
- (r'^;.*?$', Comment.Singleline),
+ (r'\s+;.*?$', Comment.Single),
+ (r'^;.*?$', Comment.Single),
(r'[]{}(),;[]', Punctuation),
(r'(in|is|and|or|not)\b', Operator.Word),
(r'\%[a-zA-Z_#@$][\w#@$]*\%', Name.Variable),