diff options
author | Georg Brandl <georg@python.org> | 2017-01-22 19:10:32 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2017-01-22 19:10:32 +0100 |
commit | 31be35b64dceb681c0d1477c6522e18faa3a34a7 (patch) | |
tree | be0b479bedd576f9d376d036e82150ca2dbdc0fe /pygments/lexers/varnish.py | |
parent | a10de10150fc543a5e5e17c883cc88d6ef1826fd (diff) | |
download | pygments-git-31be35b64dceb681c0d1477c6522e18faa3a34a7.tar.gz |
More housekeeping and missed additions to CHANGES.
Diffstat (limited to 'pygments/lexers/varnish.py')
-rw-r--r-- | pygments/lexers/varnish.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/varnish.py b/pygments/lexers/varnish.py index 23ef1b38..44521422 100644 --- a/pygments/lexers/varnish.py +++ b/pygments/lexers/varnish.py @@ -121,13 +121,13 @@ class VCLLexer(RegexLexer): r'(\s*\(.*\))', bygroups(Name.Function, Punctuation, Name.Function, using(this))), ('[a-zA-Z_]\w*', Name), - ], + ], 'comment': [ (r'[^*/]+', Comment.Multiline), (r'/\*', Comment.Multiline, '#push'), (r'\*/', Comment.Multiline, '#pop'), (r'[*/]', Comment.Multiline), - ], + ], 'comments': [ (r'#.*$', Comment), (r'/\*', Comment.Multiline, 'comment'), |