aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexSpice.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/LexSpice.cxx')
-rw-r--r--lexers/LexSpice.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexSpice.cxx b/lexers/LexSpice.cxx
index 5fb5dd776..c921b797f 100644
--- a/lexers/LexSpice.cxx
+++ b/lexers/LexSpice.cxx
@@ -227,5 +227,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 == '_';
}