summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-02 18:10:04 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-02 18:10:04 +0000
commita9fa8c58fbcc5cf8850f6963c509de272f4d4bbf (patch)
tree891f3c44b937d7a4a7492b83826ca114c31f22ff /src/evalfunc.c
parentdc4daa3a3915fba11ac87d27977240d9a5e0d47d (diff)
patch 9.0.1133: error message names do not match the itemsv9.0.1133
Problem: Error message names do not match the items. Solution: Add "_str" when the text contains "%s".
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 56dc7b8e6a..274d0bdaa5 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -7200,7 +7200,7 @@ f_islocked(typval_T *argvars, typval_T *rettv)
else if (lv.ll_range)
emsg(_(e_range_not_allowed));
else if (lv.ll_newkey != NULL)
- semsg(_(e_key_not_present_in_dictionary), lv.ll_newkey);
+ semsg(_(e_key_not_present_in_dictionary_str), lv.ll_newkey);
else if (lv.ll_list != NULL)
// List item.
rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);