summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-07-28 20:52:13 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-28 20:52:13 +0200
commitd47c39775b8d381005751b7b20da56412dafb5e4 (patch)
treeb5da177ef8fecdf379f397130272f1f05ffdcbb0 /src/errors.h
parent53f7fccc9413c9f770694b56f40f242d383b2d5f (diff)
patch 8.2.3238: Vim9: error message does not indicate the locationv8.2.3238
Problem: Vim9: error message does not indicate the location. Solution: Add the relevant text. (issue #8634)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 3cbdb53ee9..40925f89e6 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -639,3 +639,5 @@ EXTERN char e_list_or_dict_required_for_argument_nr[]
INIT(= N_("E1227: List or Dictionary required for argument %d"));
EXTERN char e_list_or_dict_or_blob_required_for_argument_nr[]
INIT(= N_("E1228: List or Dictionary or Blob required for argument %d"));
+EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
+ INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));