diff options
Diffstat (limited to 'lexers/LexGAP.cxx')
-rw-r--r-- | lexers/LexGAP.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexGAP.cxx b/lexers/LexGAP.cxx index fb3066098..bc0bc2144 100644 --- a/lexers/LexGAP.cxx +++ b/lexers/LexGAP.cxx @@ -29,7 +29,7 @@ using namespace Scintilla; #endif static inline bool IsGAPOperator(char ch) { - if (isascii(ch) && isalnum(ch)) return false; + if (IsASCII(ch) && isalnum(ch)) return false; if (ch == '+' || ch == '-' || ch == '*' || ch == '/' || ch == '^' || ch == ',' || ch == '!' || ch == '.' || ch == '=' || ch == '<' || ch == '>' || ch == '(' || |