summaryrefslogtreecommitdiff
path: root/pygments/lexers/fantom.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-15 21:32:31 +0200
committerGeorg Brandl <georg@python.org>2014-10-15 21:32:31 +0200
commit10be9bec8a7969a40d4fa3483b8317e0131b1715 (patch)
tree7047dd543253b4a5f0002c377cce59e3589a2aeb /pygments/lexers/fantom.py
parent6095eb22ab78b1754aeb56d67754cc4cb401e843 (diff)
downloadpygments-10be9bec8a7969a40d4fa3483b8317e0131b1715.tar.gz
all lexers: fix unescaped { and } so that the "regex" module can compile our regexes
Diffstat (limited to 'pygments/lexers/fantom.py')
-rw-r--r--pygments/lexers/fantom.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/fantom.py b/pygments/lexers/fantom.py
index fd850336..c05cb8e8 100644
--- a/pygments/lexers/fantom.py
+++ b/pygments/lexers/fantom.py
@@ -215,7 +215,7 @@ class FantomLexer(RegexLexer):
(r':|,', Punctuation),
(r'(?:(\w+)(::))?(\w+)',
bygroups(Name.Namespace, Punctuation, Name.Class)),
- (r'{', Punctuation, '#pop')
+ (r'\{', Punctuation, '#pop')
],
'using': [
(r'[ \t]+', Text), # consume whitespaces
@@ -235,7 +235,7 @@ class FantomLexer(RegexLexer):
],
'facet': [
(r'\s+', Text),
- (r'{', Punctuation, 'facetFields'),
+ (r'\{', Punctuation, 'facetFields'),
default('#pop')
],
'facetFields': [
@@ -244,7 +244,7 @@ class FantomLexer(RegexLexer):
include('operators'),
(r'\s+', Text),
(r'(\s*)(\w+)(\s*)(=)', bygroups(Text, Name, Text, Operator)),
- (r'}', Punctuation, '#pop'),
+ (r'\}', Punctuation, '#pop'),
(r'.', Text)
],
}