diff options
author | nyamatongwe <unknown> | 2009-04-27 03:34:45 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-04-27 03:34:45 +0000 |
commit | 45276d5c5f35e5e8a09ff06524a67a4fe9df84ca (patch) | |
tree | a2571b1f9acaa7ac6bfe7c2dc56ba29abb9ec227 /src | |
parent | 2acea8e1b0528d43e41a728a328e0ef453a3f99d (diff) | |
download | scintilla-mirror-45276d5c5f35e5e8a09ff06524a67a4fe9df84ca.tar.gz |
Refixed warning.
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 d4379f03c..d5217beec 100644 --- a/src/LexProgress.cxx +++ b/src/LexProgress.cxx @@ -100,7 +100,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 ((sentenceStartState == 0) && keywords2.InList(s) || keywords3.InList(s)) { + if (((sentenceStartState == 0) && keywords2.InList(s)) || keywords3.InList(s)) { sc.ChangeState(SCE_4GL_BLOCK | ResetSentenceStart); } else if (keywords1.InList(s)) { |