diff options
Diffstat (limited to 'lexers/LexMPT.cxx')
-rw-r--r-- | lexers/LexMPT.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexMPT.cxx b/lexers/LexMPT.cxx index b3eed3442..f3443e1ec 100644 --- a/lexers/LexMPT.cxx +++ b/lexers/LexMPT.cxx @@ -37,7 +37,7 @@ static int GetLotLineState(std::string &line) { // Now finds the first non-blank character unsigned i; // Declares counter here to make it persistent after the for loop for (i = 0; i < line.length(); ++i) { - if (!(isascii(line[i]) && isspace(line[i]))) + if (!(IsASCII(line[i]) && isspace(line[i]))) break; } |