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

patch 8.2.3695: confusing error for missing key

Problem:    Confusing error for missing key.
Solution:   Use the actualy key for the error. (closes #9241)
This commit is contained in:
Bram Moolenaar
2021-11-29 13:44:55 +00:00
parent af377e34b0
commit 5c1ec439f0
3 changed files with 30 additions and 3 deletions

View File

@@ -4287,12 +4287,18 @@ eval_index_inner(
return FAIL;
}
item = dict_find(rettv->vval.v_dict, key, (int)keylen);
item = dict_find(rettv->vval.v_dict, key, keylen);
if (item == NULL && verbose)
semsg(_(e_dictkey), key);
if (item == NULL)
{
if (verbose)
{
if (keylen > 0)
key[keylen] = NUL;
semsg(_(e_dictkey), key);
}
return FAIL;
}
copy_tv(&item->di_tv, &tmp);
clear_tv(rettv);