diff options
author | Georg Brandl <georg@python.org> | 2013-01-12 15:06:30 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-01-12 15:06:30 +0100 |
commit | b791a2396bb845284f93597d728758bd39fdeb6c (patch) | |
tree | d6a5ab17865748bb3ff894a79cf8b526df2db6e2 /pygments/lexers/text.py | |
parent | d1bf5aa4a25005e8630bb639053c4340475bff6e (diff) | |
download | pygments-b791a2396bb845284f93597d728758bd39fdeb6c.tar.gz |
Fix stuff in new lexers found by regexlint.
Diffstat (limited to 'pygments/lexers/text.py')
-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 8709e43a..65d3cd92 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -616,7 +616,7 @@ class MoinWikiLexer(RegexLexer): (r'(\'\'\'?|\|\||`|__|~~|\^|,,|::)', Comment), # Formatting # Lists (r'^( +)([.*-])( )', bygroups(Text, Name.Builtin, Text)), - (r'^( +)([a-zivx]{1,5}\.)( )', bygroups(Text, Name.Builtin, Text)), + (r'^( +)([a-z]{1,5}\.)( )', bygroups(Text, Name.Builtin, Text)), # Other Formatting (r'\[\[\w+.*?\]\]', Keyword), # Macro (r'(\[[^\s\]]+)(\s+[^\]]+?)?(\])', |