comparison src/errors.h @ 29034:f3c014fe5c16 v8.2.5039

patch 8.2.5039: confusing error if first argument of popup_create() is wrong Commit: https://github.com/vim/vim/commit/83bd7a974056fd61e142c791e79d9dd89acd5ba4 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 29 17:13:24 2022 +0100 patch 8.2.5039: confusing error if first argument of popup_create() is wrong Problem: Confusing error if first argument of popup_create() is wrong. Solution: Give a more informative error.
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 May 2022 18:15:03 +0200
parents e79bfdc53aee
children b90bca860b5a
comparison
equal deleted inserted replaced
29033:0059a17d7a2a 29034:f3c014fe5c16
3282 EXTERN char e_bitshift_ops_must_be_number[] 3282 EXTERN char e_bitshift_ops_must_be_number[]
3283 INIT(= N_("E1282: Bitshift operands must be numbers")); 3283 INIT(= N_("E1282: Bitshift operands must be numbers"));
3284 EXTERN char e_bitshift_ops_must_be_postive[] 3284 EXTERN char e_bitshift_ops_must_be_postive[]
3285 INIT(= N_("E1283: Bitshift amount must be a positive number")); 3285 INIT(= N_("E1283: Bitshift amount must be a positive number"));
3286 #endif 3286 #endif
3287 #if defined(FEAT_PROP_POPUP)
3288 EXTERN char e_argument_1_list_item_nr_dictionary_required[]
3289 INIT(= N_("E1284: Argument 1, list item %d: Dictionary required"));
3290 #endif