diff options
author | nyamatongwe <unknown> | 2011-02-06 10:58:00 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-02-06 10:58:00 +1100 |
commit | 76afb0c0c39ec7c81cf7d2442578eb6b27ff7237 (patch) | |
tree | af548fd0db1cc44c82fd1740b46af891c3a982ce | |
parent | 0655cc14611e4eae66cf2e6da6e69f8b1010dc0b (diff) | |
download | scintilla-mirror-76afb0c0c39ec7c81cf7d2442578eb6b27ff7237.tar.gz |
Style lines starting with '<' as SCE_ERR_DIFF_DELETION. Feature #3172878.
-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] == '+') { |