aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-08-19 01:59:12 +0000
committernyamatongwe <devnull@localhost>2005-08-19 01:59:12 +0000
commitf26b4af8f8599322d8fb0a170e975c1a759570f0 (patch)
tree9576377584d0d3ae9d85d850213238b9c4a7704a /src
parent376468d3fe44a546a46044e63af42e0c94483336 (diff)
downloadscintilla-mirror-f26b4af8f8599322d8fb0a170e975c1a759570f0.tar.gz
Fix so that all opcodes/keywords are case sensitive.
Diffstat (limited to 'src')
-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);