From 3a47e8beb8707195400b7d44d518a3ca7ec582bd Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 17 May 2010 02:48:46 +0000 Subject: Fix debug assertions for bug #3000566. --- src/LexBullant.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LexBullant.cxx') diff --git a/src/LexBullant.cxx b/src/LexBullant.cxx index d40e50bde..28e2e7543 100644 --- a/src/LexBullant.cxx +++ b/src/LexBullant.cxx @@ -112,7 +112,7 @@ static void ColouriseBullantDoc(unsigned int startPos, int length, int initStyle } blockChange=0; */ } - if (!isspace(ch)) + if (!(isascii(ch) && isspace(ch))) visibleChars++; if (styler.IsLeadByte(ch)) { -- cgit v1.2.3