diff options
| author | nyamatongwe <devnull@localhost> | 2000-04-06 08:43:00 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-04-06 08:43:00 +0000 | 
| commit | 21b66126441a573050340f344972f35de7f1a52d (patch) | |
| tree | 1352720978356ddc213962ccf1dc248c3b061491 /src/LexPython.cxx | |
| parent | 884b65511efa0fa9c2172d2e70bc73f1fcd30e47 (diff) | |
| download | scintilla-mirror-21b66126441a573050340f344972f35de7f1a52d.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) {  | 
