From 6bb7eba9e1bfa7c4bf3080f59d9f594d1f4f25a5 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/LexHTML.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LexHTML.cxx') diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index 8011da39f..4fe96f0bb 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -364,7 +364,7 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty continue; } - if (fold && !isspace(ch)) + if (fold && !isspacechar(ch)) visibleChars++; // handle script folding -- cgit v1.2.3