From e52f6f21a116a85fc90e273a7ddede7013520231 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 14 Apr 2019 16:54:33 -0400 Subject: vim-patch:8.0.1093: various small quickfix issues Problem: Various small quickfix issues. Solution: Remove ":" prefix from title set by a user. Add the qf_id2nr(). function. Add a couple more tests. Update documentation. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/b4d5fbabc99917a8069ba32a60c2d73d4f60e128 --- src/nvim/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/eval.c') diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 86333acbef..9f88f1e393 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -10065,7 +10065,7 @@ static void get_qf_loc_list(int is_qf, win_T *wp, typval_T *what_arg, dict_T *d = what_arg->vval.v_dict; if (d != NULL) { - get_errorlist_properties(wp, d, rettv->vval.v_dict); + qf_get_properties(wp, d, rettv->vval.v_dict); } } else { EMSG(_(e_dictreq)); -- cgit