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 | 7820ce6dcf054f033d243f972afb5fff1c5bdebe (patch) | |
| tree | 88939e49bcffe1b323ec01c490ff1adb7676b750 /lexers/LexR.cxx | |
| parent | 95e4b3e9fe7582623adfbc9de6385a813644156e (diff) | |
| download | scintilla-mirror-7820ce6dcf054f033d243f972afb5fff1c5bdebe.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/LexR.cxx')
| -rw-r--r-- | lexers/LexR.cxx | 2 |
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 == '~' || |
