From 52aefb2ddcf90b362f24010e6efab4eb148f6a98 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 24 Jan 2001 07:19:19 +0000 Subject: Changed isspace to isspacechar which is safe for characters >= 128. --- src/LexVB.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LexVB.cxx') diff --git a/src/LexVB.cxx b/src/LexVB.cxx index 67dfa7842..34f5136a6 100644 --- a/src/LexVB.cxx +++ b/src/LexVB.cxx @@ -73,7 +73,7 @@ static void ColouriseVBDoc(unsigned int startPos, int length, int initStyle, } visibleChars = 0; } - if (!isspace(ch)) + if (!isspacechar(ch)) visibleChars++; if (state == SCE_C_DEFAULT) { -- cgit v1.2.3