diff options
-rw-r--r-- | lexers/LexTADS3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexTADS3.cxx b/lexers/LexTADS3.cxx index a18054452..54cb88ad6 100644 --- a/lexers/LexTADS3.cxx +++ b/lexers/LexTADS3.cxx @@ -697,7 +697,7 @@ static inline bool IsAnIdentifier(const int style) { } static inline bool IsAnOperator(const int style) { - return style == SCE_T3_OPERATOR || SCE_T3_BRACE; + return style == SCE_T3_OPERATOR || style == SCE_T3_BRACE; } static inline bool IsSpaceEquivalent(const int ch, const int style) { |