comparison src/errors.h @ 22975:a943b175586a v8.2.2034

patch 8.2.2034: Vim9: list unpack in for statement not compiled yet Commit: https://github.com/vim/vim/commit/792f786aad8409ca9ab895392742643a5b6aed8f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 23 08:31:18 2020 +0100 patch 8.2.2034: Vim9: list unpack in for statement not compiled yet Problem: Vim9: list unpack in for statement not compiled yet. Solution: Compile list unpack. (closes https://github.com/vim/vim/issues/7345)
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Nov 2020 08:45:04 +0100
parents 00b0275ffe7f
children b98003d73150
comparison
equal deleted inserted replaced
22974:3f8025537dd9 22975:a943b175586a
19 EXTERN char e_invalid_command[] 19 EXTERN char e_invalid_command[]
20 INIT(= N_("E476: Invalid command")); 20 INIT(= N_("E476: Invalid command"));
21 #ifdef FEAT_EVAL 21 #ifdef FEAT_EVAL
22 EXTERN char e_invalid_command_str[] 22 EXTERN char e_invalid_command_str[]
23 INIT(= N_("E476: Invalid command: %s")); 23 INIT(= N_("E476: Invalid command: %s"));
24 EXTERN char e_list_value_has_more_items_than_targets[]
25 INIT(= N_("E710: List value has more items than targets"));
26 EXTERN char e_list_value_does_not_have_enough_items[]
27 INIT(= N_("E711: List value does not have enough items"));
24 EXTERN char e_cannot_slice_dictionary[] 28 EXTERN char e_cannot_slice_dictionary[]
25 INIT(= N_("E719: Cannot slice a Dictionary")); 29 INIT(= N_("E719: Cannot slice a Dictionary"));
26 EXTERN char e_assert_fails_second_arg[] 30 EXTERN char e_assert_fails_second_arg[]
27 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings")); 31 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
28 EXTERN char e_cannot_index_special_variable[] 32 EXTERN char e_cannot_index_special_variable[]
303 INIT(= N_("E1137: <Cmd> mapping must not include %s key")); 307 INIT(= N_("E1137: <Cmd> mapping must not include %s key"));
304 EXTERN char e_using_bool_as_number[] 308 EXTERN char e_using_bool_as_number[]
305 INIT(= N_("E1138: Using a Bool as a Number")); 309 INIT(= N_("E1138: Using a Bool as a Number"));
306 EXTERN char e_missing_matching_bracket_after_dict_key[] 310 EXTERN char e_missing_matching_bracket_after_dict_key[]
307 INIT(= N_("E1139: Missing matching bracket after dict key")); 311 INIT(= N_("E1139: Missing matching bracket after dict key"));
312 EXTERN char e_for_argument_must_be_sequence_of_lists[]
313 INIT(= N_("E1140: For argument must be a sequence of lists"));