aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexTCMD.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
commit87e59817db5e6cfd18b07f160b4b468b196072a5 (patch)
treea6759b4ddda9d665be1b2faae31d2c1721cbe94d /lexers/LexTCMD.cxx
parent84c83f9655629911abf29a012979d94040c4c2cd (diff)
downloadscintilla-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/LexTCMD.cxx')
-rw-r--r--lexers/LexTCMD.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexTCMD.cxx b/lexers/LexTCMD.cxx
index ed747da87..6864612ac 100644
--- a/lexers/LexTCMD.cxx
+++ b/lexers/LexTCMD.cxx
@@ -30,7 +30,7 @@ using namespace Scintilla;
static bool IsAlphabetic(int ch) {
- return isascii(ch) && isalpha(ch);
+ return IsASCII(ch) && isalpha(ch);
}
static inline bool AtEOL(Accessor &styler, unsigned int i) {