aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexR.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/LexR.cxx')
-rw-r--r--lexers/LexR.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexR.cxx b/lexers/LexR.cxx
index d18fffb9f..f4b451b25 100644
--- a/lexers/LexR.cxx
+++ b/lexers/LexR.cxx
@@ -37,7 +37,7 @@ static inline bool IsAWordStart(const int ch) {
}
static inline bool IsAnOperator(const int 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 == '~' ||