aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexCsound.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/LexCsound.cxx')
-rw-r--r--lexers/LexCsound.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexCsound.cxx b/lexers/LexCsound.cxx
index 8e5880c90..da5bfeb8c 100644
--- a/lexers/LexCsound.cxx
+++ b/lexers/LexCsound.cxx
@@ -39,7 +39,7 @@ static inline bool IsAWordStart(const int ch) {
}
static inline bool IsCsoundOperator(char ch) {
- if (isascii(ch) && isalnum(ch))
+ if (IsASCII(ch) && isalnum(ch))
return false;
// '.' left out as it is used to make up numbers
if (ch == '*' || ch == '/' || ch == '-' || ch == '+' ||