From c990575a996e399f38242fcdc6f2394bf106be04 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 20 Jan 2010 23:04:40 +0000 Subject: Fixed warning *again*. --- src/LexProgress.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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)) { -- cgit v1.2.3