summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-19 20:48:37 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-19 20:48:37 +0000
commitbed34f0a8a4e38a72a080184881bc68254a8cdc6 (patch)
treed41d7ae3339b2ada1cc155ce9010057c9c43fb43 /src/errors.h
parentf67c717e34e5553ab1c3b02b1861274cbcb78935 (diff)
patch 8.2.4147: E464 does not always include the offending commandv8.2.4147
Problem: E464 does not always include the offending command. Solution: Add another error message with "%s". (closes #9564)
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 0d11416a1d..7ad1076dfc 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -1148,6 +1148,8 @@ EXTERN char e_region_is_guarded_cannot_modify[]
#endif
EXTERN char e_ambiguous_use_of_user_defined_command[]
INIT(= N_("E464: Ambiguous use of user-defined command"));
+EXTERN char e_ambiguous_use_of_user_defined_command_str[]
+ INIT(= N_("E464: Ambiguous use of user-defined command: %s"));
EXTERN char e_winsize_requires_two_number_arguments[]
INIT(= N_("E465: :winsize requires two number arguments"));
EXTERN char e_winpos_requires_two_number_arguments[]