1
0
forked from aniani/vim

patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'

Problem:    Sometimes the quickfix title is incorrectly prefixed with ':'.
Solution:   Prepend the colon in another way. (Yegappan Lakshmanan, closes
            #2905)
This commit is contained in:
Bram Moolenaar
2018-05-13 15:29:04 +02:00
parent 05c4a471d2
commit 8b62e31003
4 changed files with 124 additions and 11 deletions

View File

@@ -10473,7 +10473,7 @@ set_qf_ll_list(
}
if (l != NULL && action && valid_dict && set_errorlist(wp, l, action,
(char_u *)(wp == NULL ? "setqflist()" : "setloclist()"), d) == OK)
(char_u *)(wp == NULL ? ":setqflist()" : ":setloclist()"), d) == OK)
rettv->vval.v_number = 0;
}
#endif