diff options
author | nyamatongwe <unknown> | 2005-08-19 01:59:12 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-08-19 01:59:12 +0000 |
commit | fe41595bcad6da34f142f547702283d5764b5b3d (patch) | |
tree | 9576377584d0d3ae9d85d850213238b9c4a7704a | |
parent | c70f9c11a197dcb7513f4ad5909913c2aa59eef2 (diff) | |
download | scintilla-mirror-fe41595bcad6da34f142f547702283d5764b5b3d.tar.gz |
Fix so that all opcodes/keywords are case sensitive.
-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); |