From eb064df5b6f74de9a1f1a3e0a0491aebd0391b9e Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Mon, 5 Dec 2011 19:51:08 +0100 Subject: [PATCH] TCL: Highlight words as keywords after '{' as this highlights 'else' Upstream Scintilla applied it as 3924:e2385dff420a. Closes #3432877. --- scintilla/lexers/LexTCL.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/scintilla/lexers/LexTCL.cxx b/scintilla/lexers/LexTCL.cxx index de309f2a..f6924e05 100644 --- a/scintilla/lexers/LexTCL.cxx +++ b/scintilla/lexers/LexTCL.cxx @@ -309,6 +309,7 @@ next: break; case '}': sc.SetState(SCE_TCL_OPERATOR); + expected = true; --currentLevel; break; case '[':