summaryrefslogtreecommitdiff
path: root/pygments/lexers/objective.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/objective.py')
-rw-r--r--pygments/lexers/objective.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/objective.py b/pygments/lexers/objective.py
index a2a3c7f5..8cb02170 100644
--- a/pygments/lexers/objective.py
+++ b/pygments/lexers/objective.py
@@ -262,7 +262,7 @@ class LogosLexer(ObjectiveCppLexer):
bygroups(Keyword, Text, Name.Class)),
(r'(%config)(\s*\(\s*)(\w+)(\s*=\s*)(.*?)(\s*\)\s*)',
bygroups(Keyword, Text, Name.Variable, Text, String, Text)),
- (r'(%ctor)(\s*)({)', bygroups(Keyword, Text, Punctuation),
+ (r'(%ctor)(\s*)(\{)', bygroups(Keyword, Text, Punctuation),
'function'),
(r'(%new)(\s*)(\()(\s*.*?\s*)(\))',
bygroups(Keyword, Text, Keyword, String, Keyword)),