vim-patch:8.2.2423: missing error message

Problem:    Missing error message.
Solution:   Add the error message.

61015162ba

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
Jan Edmund Lazo
2025-10-13 00:15:21 -04:00
parent e96c61d92d
commit b764a1ba93
2 changed files with 1 additions and 2 deletions

View File

@@ -68,8 +68,6 @@ typedef struct {
static const char e_window_layout_changed_unexpectedly[] static const char e_window_layout_changed_unexpectedly[]
= N_("E249: Window layout changed unexpectedly"); = N_("E249: Window layout changed unexpectedly");
static const char e_cannot_change_arglist_recursively[]
= N_("E1156: Cannot change the argument list recursively");
enum { enum {
AL_SET = 1, AL_SET = 1,

View File

@@ -166,6 +166,7 @@ EXTERN const char e_no_more_directory_str_found_in_cdpath[] INIT(= N_("E346: No
EXTERN const char e_no_more_file_str_found_in_path[] INIT(= N_("E347: No more file \"%s\" found in path")); EXTERN const char e_no_more_file_str_found_in_path[] INIT(= N_("E347: No more file \"%s\" found in path"));
EXTERN const char e_cannot_define_autocommands_for_all_events[] INIT(= N_("E1155: Cannot define autocommands for ALL events")); EXTERN const char e_cannot_define_autocommands_for_all_events[] INIT(= N_("E1155: Cannot define autocommands for ALL events"));
EXTERN const char e_cannot_change_arglist_recursively[] INIT(= N_("E1156: Cannot change the argument list recursively"));
EXTERN const char e_resulting_text_too_long[] INIT(= N_("E1240: Resulting text too long")); EXTERN const char e_resulting_text_too_long[] INIT(= N_("E1240: Resulting text too long"));