diff options
| author | nyamatongwe <unknown> | 2004-03-27 11:04:49 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2004-03-27 11:04:49 +0000 | 
| commit | f405e5a0a3ed16539e4ba0d88440d999fd077fad (patch) | |
| tree | 0bd1c215e0fdcc4fb17ff239c0aec9933a387a1d /src | |
| parent | 41f1af1f5afda97c6b2b457b75ac3ad55c6cba80 (diff) | |
| download | scintilla-mirror-f405e5a0a3ed16539e4ba0d88440d999fd077fad.tar.gz | |
Indent white space fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/LexOthers.cxx | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx index 66de98c3b..4d1fa1546 100644 --- a/src/LexOthers.cxx +++ b/src/LexOthers.cxx @@ -183,7 +183,7 @@ static void ColouriseDiffLine(char *lineBuffer, int endLine, Accessor &styler) {  			styler.ColourTo(endLine, SCE_DIFF_HEADER);  	} else if (0 == strncmp(lineBuffer, "====", 4)) {  // For p4's diff  		styler.ColourTo(endLine, SCE_DIFF_HEADER); - 	} else if (0 == strncmp(lineBuffer, "***", 3)) { +	} else if (0 == strncmp(lineBuffer, "***", 3)) {  		// In a context diff, *** appears in both the header and the position markers.  		// Also ******** is a chunk header, but here it's treated as part of the  		// position marker since there is no separate style for a chunk header. @@ -192,7 +192,7 @@ static void ColouriseDiffLine(char *lineBuffer, int endLine, Accessor &styler) {  		else if (lineBuffer[3] == '*')  			styler.ColourTo(endLine, SCE_DIFF_POSITION);  		else -		styler.ColourTo(endLine, SCE_DIFF_HEADER); +			styler.ColourTo(endLine, SCE_DIFF_HEADER);  	} else if (0 == strncmp(lineBuffer, "? ", 2)) {    // For difflib  		styler.ColourTo(endLine, SCE_DIFF_HEADER);  	} else if (lineBuffer[0] == '@') {  | 
