diff options
author | nyamatongwe <devnull@localhost> | 2008-02-08 03:38:52 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-02-08 03:38:52 +0000 |
commit | 732fff88bab61562bd9d395a8f92a58cf52cfcf4 (patch) | |
tree | 6f9e614edc867611eb925f039d868fc3ce53ed28 /src/LexCPP.cxx | |
parent | f7c81fb3c17f6b09d6d90b07de2ace6eaa46847f (diff) | |
download | scintilla-mirror-732fff88bab61562bd9d395a8f92a58cf52cfcf4.tar.gz |
Recognize != operator from Octave instead of entering command mode.
Diffstat (limited to 'src/LexCPP.cxx')
-rw-r--r-- | src/LexCPP.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexCPP.cxx b/src/LexCPP.cxx index 49dad8b9b..77d371b90 100644 --- a/src/LexCPP.cxx +++ b/src/LexCPP.cxx @@ -445,6 +445,9 @@ static void FoldCppDoc(unsigned int startPos, int length, int initStyle, visibleChars = 0; } } + if ((unsigned)styler.Length() == endPos) { + styler.SetLevel(lineCurrent, levelCurrent); + } } static const char * const cppWordLists[] = { |