diff options
author | nyamatongwe <unknown> | 2011-11-05 20:15:00 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-11-05 20:15:00 +1100 |
commit | db0d9f9e229eb1cd190a078e70c495e9b8a9a676 (patch) | |
tree | 8df4b796fe768589b086b2c065e4f20cc3229d3a /lexers/LexTCL.cxx | |
parent | 45333513d37d6c4e8c56f4f62da4df57a3b611f7 (diff) | |
download | scintilla-mirror-db0d9f9e229eb1cd190a078e70c495e9b8a9a676.tar.gz |
Highlight words as keywords after '{' as this highlights 'else'. Bug #1836954.
From Colomban Wendling.
Diffstat (limited to 'lexers/LexTCL.cxx')
-rw-r--r-- | lexers/LexTCL.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lexers/LexTCL.cxx b/lexers/LexTCL.cxx index de309f2a7..f6924e05e 100644 --- a/lexers/LexTCL.cxx +++ b/lexers/LexTCL.cxx @@ -309,6 +309,7 @@ next: break; case '}': sc.SetState(SCE_TCL_OPERATOR); + expected = true; --currentLevel; break; case '[': |