summaryrefslogtreecommitdiff
path: root/pygments/lexers/varnish.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/varnish.py')
-rw-r--r--pygments/lexers/varnish.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/varnish.py b/pygments/lexers/varnish.py
index e64a601b..de8e598b 100644
--- a/pygments/lexers/varnish.py
+++ b/pygments/lexers/varnish.py
@@ -91,14 +91,14 @@ class VCLLexer(RegexLexer):
'resp.reason', 'bereq.url', 'beresp.do_esi', 'beresp.proto', 'client.ip',
'bereq.proto', 'server.hostname', 'remote.ip', 'req.backend_hint',
'server.identity', 'req_top.url', 'beresp.grace', 'beresp.was_304',
- 'server.ip', 'bereq.uncacheable', 'now'), suffix=r'\b'),
+ 'server.ip', 'bereq.uncacheable'), suffix=r'\b'),
Name.Variable),
(r'[!%&+*\-,/<.}{>=|~]+', Operator),
(r'[();]', Punctuation),
(r'[,]+', Punctuation),
- (words(('include', 'hash_data', 'regsub', 'regsuball', 'if', 'else',
- 'elsif', 'elif', 'synth', 'synthetic', 'ban', 'synth',
+ (words(('hash_data', 'regsub', 'regsuball', 'if', 'else',
+ 'elsif', 'elif', 'synth', 'synthetic', 'ban',
'return', 'set', 'unset', 'import', 'include', 'new',
'rollback', 'call'), suffix=r'\b'),
Keyword),