diff options
Diffstat (limited to 'lexers/LexAda.cxx')
-rw-r--r-- | lexers/LexAda.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexAda.cxx b/lexers/LexAda.cxx index b11c247bb..7a7dea60f 100644 --- a/lexers/LexAda.cxx +++ b/lexers/LexAda.cxx @@ -511,5 +511,5 @@ static inline bool IsWordCharacter(int ch) { } static inline bool IsWordStartCharacter(int ch) { - return (isascii(ch) && isalpha(ch)) || ch == '_'; + return (IsASCII(ch) && isalpha(ch)) || ch == '_'; } |