comparison src/evalfunc.c @ 12427:fc3e2d5614dd v8.0.1093

patch 8.0.1093: various small quickfix issues commit https://github.com/vim/vim/commit/b4d5fbabc99917a8069ba32a60c2d73d4f60e128 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 11 19:31:28 2017 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Mon, 11 Sep 2017 19:45:04 +0200
parents de1ae9d8ef57
children dfb8254aa735
comparison
equal deleted inserted replaced
12426:510faba3f8e5 12427:fc3e2d5614dd
4824 if (what_arg->v_type == VAR_DICT) 4824 if (what_arg->v_type == VAR_DICT)
4825 { 4825 {
4826 dict_T *d = what_arg->vval.v_dict; 4826 dict_T *d = what_arg->vval.v_dict;
4827 4827
4828 if (d != NULL) 4828 if (d != NULL)
4829 get_errorlist_properties(wp, d, rettv->vval.v_dict); 4829 qf_get_properties(wp, d, rettv->vval.v_dict);
4830 } 4830 }
4831 else 4831 else
4832 EMSG(_(e_dictreq)); 4832 EMSG(_(e_dictreq));
4833 } 4833 }
4834 } 4834 }