0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.4.203

Problem:    Parsing 'errorformat' is not correct.
Solution:   Reset "multiignore" at the start of a multi-line message. (Lcd)
This commit is contained in:
Bram Moolenaar
2014-03-12 19:41:55 +01:00
parent b1692e2b8f
commit 8eded09bf7
10 changed files with 32 additions and 6 deletions

View File

@@ -751,7 +751,10 @@ restofline:
fmt_start = fmt_ptr;
if (vim_strchr((char_u *)"AEWI", idx) != NULL)
{
multiline = TRUE; /* start of a multi-line message */
multiignore = FALSE; /* reset continuation */
}
else if (vim_strchr((char_u *)"CZ", idx) != NULL)
{ /* continuation of multi-line msg */
if (qfprev == NULL)