diff options
author | nyamatongwe <unknown> | 2009-01-01 01:36:37 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-01-01 01:36:37 +0000 |
commit | d6571fa63db365bced55161c5d2e370b0097b4f8 (patch) | |
tree | e3ce4c3d8bc377d3c94132e26c9a7cae538e6132 /src/LexProgress.cxx | |
parent | e53adf622fb4422ff03342ece7e5a25ed4860071 (diff) | |
download | scintilla-mirror-d6571fa63db365bced55161c5d2e370b0097b4f8.tar.gz |
Updates to avoid warnings from GCC 4.3. Should not change behaviour.
Diffstat (limited to 'src/LexProgress.cxx')
-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 c21356960..902aa53d5 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 (((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)) { |