diff options
Diffstat (limited to 'lexers/LexAVE.cxx')
-rw-r--r-- | lexers/LexAVE.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexAVE.cxx b/lexers/LexAVE.cxx index 373173ca2..1bce9a2c0 100644 --- a/lexers/LexAVE.cxx +++ b/lexers/LexAVE.cxx @@ -45,7 +45,7 @@ inline bool IsAWordStart(const int ch) { } inline bool isAveOperator(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 == '+' || |