aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexCsound.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-05-13 01:30:06 +0000
committernyamatongwe <devnull@localhost>2010-05-13 01:30:06 +0000
commitb58ecc5340c78b08cbc15d62715001937f321c20 (patch)
tree8eb24653968c21beb97ca0350c3c5fe854bb816e /src/LexCsound.cxx
parentc80245c635898cbe4715cca13a43743046d01b6d (diff)
downloadscintilla-mirror-b58ecc5340c78b08cbc15d62715001937f321c20.tar.gz
Fix debug assertions for bug #3000566.
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 4162c9b3a..3aa2eb897 100644
--- a/src/LexCsound.cxx
+++ b/src/LexCsound.cxx
@@ -35,7 +35,7 @@ static inline bool IsAWordStart(const int ch) {
}
static inline bool IsCsoundOperator(char ch) {
- if (isalnum(ch))
+ if (isascii(ch) && isalnum(ch))
return false;
// '.' left out as it is used to make up numbers
if (ch == '*' || ch == '/' || ch == '-' || ch == '+' ||