diff options
| author | nyamatongwe <devnull@localhost> | 2001-01-24 07:19:19 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-01-24 07:19:19 +0000 | 
| commit | 6bb7eba9e1bfa7c4bf3080f59d9f594d1f4f25a5 (patch) | |
| tree | 62723ebcb6eefc3f474dd9d5c4dccaf8216416f4 /src/LexPascal.cxx | |
| parent | 6aaed7ef7aa920c1ef8e6fee5a2d404137654b79 (diff) | |
| download | scintilla-mirror-6bb7eba9e1bfa7c4bf3080f59d9f594d1f4f25a5.tar.gz | |
Changed isspace to isspacechar which is safe for characters >= 128.
Diffstat (limited to 'src/LexPascal.cxx')
| -rw-r--r-- | src/LexPascal.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/LexPascal.cxx b/src/LexPascal.cxx index d9227df99..ee568c77f 100644 --- a/src/LexPascal.cxx +++ b/src/LexPascal.cxx @@ -84,7 +84,7 @@ static void ColourisePascalDoc(unsigned int startPos, int length, int initStyle,  			}  			visibleChars = 0;  		} -		if (!isspace(ch)) +		if (!isspacechar(ch))  			visibleChars++;  		if (styler.IsLeadByte(ch)) { | 
