diff options
| author | nyamatongwe <unknown> | 2000-04-06 08:43:00 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-04-06 08:43:00 +0000 | 
| commit | f129e6862882879aed3c8338243dbb43c17721ed (patch) | |
| tree | 1352720978356ddc213962ccf1dc248c3b061491 /src/LexPython.cxx | |
| parent | dae4eea6225cd2f3ed9f2e4dfe46606cc9a0743f (diff) | |
| download | scintilla-mirror-f129e6862882879aed3c8338243dbb43c17721ed.tar.gz | |
Initial Unicode support code.
Diffstat (limited to 'src/LexPython.cxx')
| -rw-r--r-- | src/LexPython.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexPython.cxx b/src/LexPython.cxx index 86597e863..1864412a6 100644 --- a/src/LexPython.cxx +++ b/src/LexPython.cxx @@ -71,9 +71,9 @@ static void ColourisePyDoc(unsigned int startPos, int length, int initStyle,  	for (int i = startPos; i <= lengthDoc; i++) {  		if (atStartLine) { -			char chFlags;  			char chBad = static_cast<char>(64);  			char chGood = static_cast<char>(0); +			char chFlags = chGood;  			if (whingeLevel == 1) {  				chFlags = (spaceFlags & wsInconsistent) ? chBad : chGood;  			} else if (whingeLevel == 2) {  | 
