summaryrefslogtreecommitdiff
path: root/pygments/lexers/theorem.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-11-06 12:26:04 +0100
committerGeorg Brandl <georg@python.org>2014-11-06 12:26:04 +0100
commit9f1763bdbb8c156dd1c5897c50d5cfcf1ccad4c7 (patch)
tree38aecd295c761beac1ffba59efce26f1e274b4d0 /pygments/lexers/theorem.py
parentf8417e3412d061538ddff8b707048112120f3647 (diff)
downloadpygments-9f1763bdbb8c156dd1c5897c50d5cfcf1ccad4c7.tar.gz
Simplify charclasses in a few more modules
Diffstat (limited to 'pygments/lexers/theorem.py')
-rw-r--r--pygments/lexers/theorem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/theorem.py b/pygments/lexers/theorem.py
index a59b86ae..9c59d471 100644
--- a/pygments/lexers/theorem.py
+++ b/pygments/lexers/theorem.py
@@ -352,7 +352,7 @@ class IsabelleLexer(RegexLexer):
(r'[(*)]', Comment),
],
'text': [
- (r'[^\*\}]+', Comment),
+ (r'[^*}]+', Comment),
(r'\*\}', Comment, '#pop'),
(r'\*', Comment),
(r'\}', Comment),