diff options
author | nyamatongwe <unknown> | 2009-02-14 23:40:48 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-02-14 23:40:48 +0000 |
commit | 0db4cda3d7ef748e66e3627addb62154d04ba284 (patch) | |
tree | 88d7aa113c8479d09a28bf211399c09d82d2fc99 /src | |
parent | c7c7469093e1d6fcdf99b7caa6dad627538dccc6 (diff) | |
download | scintilla-mirror-0db4cda3d7ef748e66e3627addb62154d04ba284.tar.gz |
Using platform-independent CompareCaseInsensitive function.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexInno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexInno.cxx b/src/LexInno.cxx index fe7af1e7d..6da8548ff 100644 --- a/src/LexInno.cxx +++ b/src/LexInno.cxx @@ -144,7 +144,7 @@ static void ColouriseInnoDoc(unsigned int startPos, int length, int, WordList *k // Check if the buffer contains a section name if (sectionKeywords.InList(buffer)) { styler.ColourTo(i,SCE_INNO_SECTION); - isCode = !strcmpi(buffer, "code"); + isCode = !CompareCaseInsensitive(buffer, "code"); } else { styler.ColourTo(i,SCE_INNO_DEFAULT); } |