summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pygments/lexers/unicon.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/unicon.py b/pygments/lexers/unicon.py
index 7b0cdfe3..6301a88b 100644
--- a/pygments/lexers/unicon.py
+++ b/pygments/lexers/unicon.py
@@ -140,7 +140,7 @@ class UniconLexer(RegexLexer):
(r'[*<>+=/&!?@~\\-]', Operator),
(r'\^', Operator),
(r'(\w+)(\s*|[(,])', bygroups(Name, using(this))),
- (r"([[\]])", Punctuation),
+ (r"([\[\]])", Punctuation),
(r"(<>|=>|[()|:;,.'`]|[{}]|[%]|[&?])", Punctuation),
(r'\n+', Text),
],
@@ -280,7 +280,7 @@ class IconLexer(RegexLexer):
(r"'(?:[^\\']|\\.)*'", String.Character),
(r'[*<>+=/&!?@~\\-]', Operator),
(r'(\w+)(\s*|[(,])', bygroups(Name, using(this))),
- (r"([[\]])", Punctuation),
+ (r"([\[\]])", Punctuation),
(r"(<>|=>|[()|:;,.'`]|[{}]|[%^]|[&?])", Punctuation),
(r'\n+', Text),
],