diff options
author | nyamatongwe <unknown> | 2001-01-24 07:19:19 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-01-24 07:19:19 +0000 |
commit | 52aefb2ddcf90b362f24010e6efab4eb148f6a98 (patch) | |
tree | 62723ebcb6eefc3f474dd9d5c4dccaf8216416f4 /src/LexHTML.cxx | |
parent | f62ebeccbfd8c1e9e30f7329a9294a4b57e3b453 (diff) | |
download | scintilla-mirror-52aefb2ddcf90b362f24010e6efab4eb148f6a98.tar.gz |
Changed isspace to isspacechar which is safe for characters >= 128.
Diffstat (limited to 'src/LexHTML.cxx')
-rw-r--r-- | src/LexHTML.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |