aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-04-27 03:34:45 +0000
committernyamatongwe <devnull@localhost>2009-04-27 03:34:45 +0000
commit001f6da7264086b397a9b63b5d4748d004b48b1b (patch)
treea2571b1f9acaa7ac6bfe7c2dc56ba29abb9ec227
parent631f3ebc2a327eb10d9eb745e4a4cc0e99170263 (diff)
downloadscintilla-mirror-001f6da7264086b397a9b63b5d4748d004b48b1b.tar.gz
Refixed warning.rel-1-78
-rw-r--r--src/LexProgress.cxx2
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)) {