From 976668ba3341156e0901f97f6d9e83fd725cb9bd Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 6 Feb 2011 10:58:00 +1100 Subject: Style lines starting with '<' as SCE_ERR_DIFF_DELETION. Feature #3172878. --- lexers/LexOthers.cxx | 4 ++-- 1 file 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] == '+') { -- cgit v1.2.3