diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-07-21 15:20:45 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-07-21 15:20:45 +1000 |
| commit | 87e59817db5e6cfd18b07f160b4b468b196072a5 (patch) | |
| tree | a6759b4ddda9d665be1b2faae31d2c1721cbe94d /lexers/LexGAP.cxx | |
| parent | 84c83f9655629911abf29a012979d94040c4c2cd (diff) | |
| download | scintilla-mirror-87e59817db5e6cfd18b07f160b4b468b196072a5.tar.gz | |
Replace all instances of isascii with Scintilla-specific IsASCII.
iasascii is not part of ISO C or C++ but is a BSD extension so caused
problems when compiling in strict compliance mode.
Diffstat (limited to 'lexers/LexGAP.cxx')
| -rw-r--r-- | lexers/LexGAP.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexGAP.cxx b/lexers/LexGAP.cxx index fb3066098..bc0bc2144 100644 --- a/lexers/LexGAP.cxx +++ b/lexers/LexGAP.cxx @@ -29,7 +29,7 @@ using namespace Scintilla; #endif static inline bool IsGAPOperator(char ch) { - if (isascii(ch) && isalnum(ch)) return false; + if (IsASCII(ch) && isalnum(ch)) return false; if (ch == '+' || ch == '-' || ch == '*' || ch == '/' || ch == '^' || ch == ',' || ch == '!' || ch == '.' || ch == '=' || ch == '<' || ch == '>' || ch == '(' || |
