aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexMSSQL.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-21 15:20:45 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-21 15:20:45 +1000
commit7820ce6dcf054f033d243f972afb5fff1c5bdebe (patch)
tree88939e49bcffe1b323ec01c490ff1adb7676b750 /lexers/LexMSSQL.cxx
parent95e4b3e9fe7582623adfbc9de6385a813644156e (diff)
downloadscintilla-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/LexMSSQL.cxx')
-rw-r--r--lexers/LexMSSQL.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexMSSQL.cxx b/lexers/LexMSSQL.cxx
index ce600394c..820030ca2 100644
--- a/lexers/LexMSSQL.cxx
+++ b/lexers/LexMSSQL.cxx
@@ -36,7 +36,7 @@ using namespace Scintilla;
#define KW_MSSQL_OPERATORS 6
static bool isMSSQLOperator(char 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 == '*' ||