diff options
author | nyamatongwe <devnull@localhost> | 2011-02-06 10:58:00 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-02-06 10:58:00 +1100 |
commit | 976668ba3341156e0901f97f6d9e83fd725cb9bd (patch) | |
tree | b9d553c08326051b805d84ff917f528613fcfbff /lexers/LexOthers.cxx | |
parent | 12ece453e19929ca599c8496d334e9ab3ceea8b6 (diff) | |
download | scintilla-mirror-976668ba3341156e0901f97f6d9e83fd725cb9bd.tar.gz |
Style lines starting with '<' as SCE_ERR_DIFF_DELETION. Feature #3172878.
Diffstat (limited to 'lexers/LexOthers.cxx')
-rw-r--r-- | lexers/LexOthers.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexOthers.cxx b/lexers/LexOthers.cxx index ee8bbee59..c7b575b94 100644 --- a/lexers/LexOthers.cxx +++ b/lexers/LexOthers.cxx @@ -929,8 +929,8 @@ static int RecogniseErrorListLine(const char *lineBuffer, unsigned int lengthLin // Command or return status return SCE_ERR_CMD; } else if (lineBuffer[0] == '<') { - // Diff removal, but not interested. Trapped to avoid hitting CTAG cases. - return SCE_ERR_DEFAULT; + // Diff removal. + return SCE_ERR_DIFF_DELETION; } else if (lineBuffer[0] == '!') { return SCE_ERR_DIFF_CHANGED; } else if (lineBuffer[0] == '+') { |