diff options
author | Neil <nyamatongwe@gmail.com> | 2018-03-16 16:57:06 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-03-16 16:57:06 +1100 |
commit | f6bc0ea88ffc93459eba56a1f1872099500405a0 (patch) | |
tree | 1275279eb8f81c798caf5624fc33dfaf5bf52e81 /lexers/LexErrorList.cxx | |
parent | c7441815efcd622731ba1c79d7b5f93e5f7eab91 (diff) | |
download | scintilla-mirror-f6bc0ea88ffc93459eba56a1f1872099500405a0.tar.gz |
Backport: Remove line-end white space.
Backport of changeset 6625:2dd6b8049c4e.
Diffstat (limited to 'lexers/LexErrorList.cxx')
-rw-r--r-- | lexers/LexErrorList.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexErrorList.cxx b/lexers/LexErrorList.cxx index a82d0cf7c..b3dcd2a59 100644 --- a/lexers/LexErrorList.cxx +++ b/lexers/LexErrorList.cxx @@ -104,7 +104,7 @@ static int RecogniseErrorListLine(const char *lineBuffer, Sci_PositionU lengthLi // perl error message: // <message> at <file> line <line> return SCE_ERR_PERL; - } else if ((lengthLine >= 6) && + } else if ((lengthLine >= 6) && (memcmp(lineBuffer, " at ", 6) == 0) && strstr(lineBuffer, ":line ")) { // A .NET traceback |