diff options
author | nyamatongwe <devnull@localhost> | 2010-01-20 23:04:40 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-01-20 23:04:40 +0000 |
commit | cf509925bbf96a5a6439fef92342408245e03d11 (patch) | |
tree | 90aa0abab664a24ce1a6112c57ff366e8c6dd0b5 /src | |
parent | 977c396a0c9d3621de36e812721e7033c4990947 (diff) | |
download | scintilla-mirror-cf509925bbf96a5a6439fef92342408245e03d11.tar.gz |
Fixed warning *again*.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexProgress.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexProgress.cxx b/src/LexProgress.cxx index 2e3ede754..9e1940e29 100644 --- a/src/LexProgress.cxx +++ b/src/LexProgress.cxx @@ -101,7 +101,7 @@ static void Colourise4glDoc(unsigned int startPos, int length, int initStyle, Wo if (!IsAWordChar(sc.ch) && sc.ch != '-') { char s[1000]; sc.GetCurrentLowered(s, sizeof(s)); - if (((sc.state & 0x10) == 0) && keywords2.InList(s) || keywords3.InList(s)) { + if ((((sc.state & 0x10) == 0) && keywords2.InList(s)) || keywords3.InList(s)) { sc.ChangeState(SCE_4GL_BLOCK | ResetSentenceStart); } else if (keywords1.InList(s)) { |