diff options
author | nyamatongwe <devnull@localhost> | 2005-08-19 01:59:12 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-08-19 01:59:12 +0000 |
commit | f26b4af8f8599322d8fb0a170e975c1a759570f0 (patch) | |
tree | 9576377584d0d3ae9d85d850213238b9c4a7704a /src | |
parent | 376468d3fe44a546a46044e63af42e0c94483336 (diff) | |
download | scintilla-mirror-f26b4af8f8599322d8fb0a170e975c1a759570f0.tar.gz |
Fix so that all opcodes/keywords are case sensitive.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexCsound.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexCsound.cxx b/src/LexCsound.cxx index fc33802db..27f7b990a 100644 --- a/src/LexCsound.cxx +++ b/src/LexCsound.cxx @@ -82,7 +82,7 @@ static void ColouriseCsoundDoc(unsigned int startPos, int length, int initStyle, } else if (sc.state == SCE_CSOUND_IDENTIFIER) { if (!IsAWordChar(sc.ch) ) { char s[100]; - sc.GetCurrentLowered(s, sizeof(s)); + sc.GetCurrent(s, sizeof(s)); if (opcode.InList(s)) { sc.ChangeState(SCE_CSOUND_OPCODE); |