diff options
author | blackbird <devnull@localhost> | 2006-12-20 15:47:15 +0100 |
---|---|---|
committer | blackbird <devnull@localhost> | 2006-12-20 15:47:15 +0100 |
commit | 00def2e249f137df4c18539a1f87c7d57acdbfb2 (patch) | |
tree | 13fb4cf25e9918616c0a1e9d7de6cb02d70e1dae | |
parent | 746e0fa822472ea365ef1596bd97c112536356cc (diff) | |
download | pygments-00def2e249f137df4c18539a1f87c7d57acdbfb2.tar.gz |
[svn] fixed XXX in apache lexer
-rw-r--r-- | pygments/lexers/text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py index b8388dc4..525b1bc5 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -295,7 +295,7 @@ class ApacheConfLexer(RegexLexer): ], 'value': [ (r'$', Text, '#pop'), - (r'\s', Text), # XXX: \s+ does not work with examplefile + (r'[^\S\n]+', Text), (r'\d+', Number), (r'/([a-zA-Z0-9][a-zA-Z0-9_./-]+)', String.Other), (r'(on|off|none|any|all|double|email|dns|min|minimal|' |