aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexCsound.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2005-08-19 01:59:12 +0000
committernyamatongwe <unknown>2005-08-19 01:59:12 +0000
commitfe41595bcad6da34f142f547702283d5764b5b3d (patch)
tree9576377584d0d3ae9d85d850213238b9c4a7704a /src/LexCsound.cxx
parentc70f9c11a197dcb7513f4ad5909913c2aa59eef2 (diff)
downloadscintilla-mirror-fe41595bcad6da34f142f547702283d5764b5b3d.tar.gz
Fix so that all opcodes/keywords are case sensitive.
Diffstat (limited to 'src/LexCsound.cxx')
-rw-r--r--src/LexCsound.cxx2
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);