aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexAU3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/LexAU3.cxx')
-rw-r--r--lexers/LexAU3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexAU3.cxx b/lexers/LexAU3.cxx
index e9ab75772..6f137adba 100644
--- a/lexers/LexAU3.cxx
+++ b/lexers/LexAU3.cxx
@@ -87,7 +87,7 @@ static inline bool IsAWordStart(const int ch)
}
static inline bool IsAOperator(char ch) {
- if (isascii(ch) && isalnum(ch))
+ if (IsASCII(ch) && isalnum(ch))
return false;
if (ch == '+' || ch == '-' || ch == '*' || ch == '/' ||
ch == '&' || ch == '^' || ch == '=' || ch == '<' || ch == '>' ||