DiffHighlightFix.diff
| CodeEditor/DiffSyntax.cpp (kopia robocza) | ||
|---|---|---|
| 55 | 55 |
if(*ln == '-' || *ln == '<' || *ln == '!') |
| 56 | 56 |
Put(INK_DIFF_REMOVED, lineLength); |
| 57 | 57 |
else |
| 58 |
if(*ln == '\\') |
|
| 58 |
if(*ln == ' ') |
|
| 59 |
Put(INK_NORMAL, lineLength); |
|
| 60 |
else |
|
| 59 | 61 |
Put(INK_DIFF_COMMENT, lineLength); |
| 60 |
else |
|
| 61 |
Put(INK_NORMAL, lineLength); |
|
| 62 | 62 |
} |
| 63 | 63 | |
| 64 | 64 |
int DiffSyntax::FindTheNumberOfCharsToLineEnd(const wchar *current, const wchar *end) const |