comparison src/errors.h @ 25796:60e4892dfa45 v8.2.3433

patch 8.2.3433: :delcommand does not take a -buffer option Commit: https://github.com/vim/vim/commit/bdcba24d8597abd5af509c2fb9206e64e713c711 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 12 20:58:02 2021 +0200 patch 8.2.3433: :delcommand does not take a -buffer option Problem: :delcommand does not take a -buffer option. Solution: Add the -buffer option.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Sep 2021 21:00:04 +0200
parents 33ebec729787
children 8d55e978f95b
comparison
equal deleted inserted replaced
25795:f0093634cf43 25796:60e4892dfa45
139 EXTERN char e_undefined_variable_str[] 139 EXTERN char e_undefined_variable_str[]
140 INIT(= N_("E121: Undefined variable: %s")); 140 INIT(= N_("E121: Undefined variable: %s"));
141 EXTERN char e_undefined_variable_char_str[] 141 EXTERN char e_undefined_variable_char_str[]
142 INIT(= N_("E121: Undefined variable: %c:%s")); 142 INIT(= N_("E121: Undefined variable: %c:%s"));
143 #endif 143 #endif
144 EXTERN char e_no_such_user_defined_command_str[]
145 INIT(= N_("E184: No such user-defined command: %s"));
144 #ifndef FEAT_DIGRAPHS 146 #ifndef FEAT_DIGRAPHS
145 EXTERN char e_no_digraphs_version[] 147 EXTERN char e_no_digraphs_version[]
146 INIT(= N_("E196: No digraphs in this version")); 148 INIT(= N_("E196: No digraphs in this version"));
147 #endif 149 #endif
148 EXTERN char e_ambiguous_use_of_user_defined_command[] 150 EXTERN char e_ambiguous_use_of_user_defined_command[]
654 INIT(= N_("E1234: legacy must be followed by a command")); 656 INIT(= N_("E1234: legacy must be followed by a command"));
655 EXTERN char e_function_reference_is_not_set[] 657 EXTERN char e_function_reference_is_not_set[]
656 INIT(= N_("E1235: Function reference is not set")); 658 INIT(= N_("E1235: Function reference is not set"));
657 EXTERN char e_cannot_use_str_itself_it_is_imported_with_star[] 659 EXTERN char e_cannot_use_str_itself_it_is_imported_with_star[]
658 INIT(= N_("E1236: Cannot use %s itself, it is imported with '*'")); 660 INIT(= N_("E1236: Cannot use %s itself, it is imported with '*'"));
661 EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
662 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));