comparison src/errors.h @ 26646:6f8d3470fa90 v8.2.3852

patch 8.2.3852: Vim9: not enough tests Commit: https://github.com/vim/vim/commit/f47c5a8e2d8eda7c2c8a9cccf9568eb56c03a0cf Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 19 15:17:21 2021 +0000 patch 8.2.3852: Vim9: not enough tests Problem: Vim9: not enough tests. Solution: Also run existing tests for Vim9 script. Make errors more consistent.
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Dec 2021 16:30:03 +0100
parents 6fd15d82e898
children 2b17f87b7bd1
comparison
equal deleted inserted replaced
26645:6a31b4d210e0 26646:6f8d3470fa90
284 EXTERN char e_invalid_command[] 284 EXTERN char e_invalid_command[]
285 INIT(= N_("E476: Invalid command")); 285 INIT(= N_("E476: Invalid command"));
286 #ifdef FEAT_EVAL 286 #ifdef FEAT_EVAL
287 EXTERN char e_invalid_command_str[] 287 EXTERN char e_invalid_command_str[]
288 INIT(= N_("E476: Invalid command: %s")); 288 INIT(= N_("E476: Invalid command: %s"));
289 EXTERN char e_cannot_index_a_funcref[]
290 INIT(= N_("E695: Cannot index a Funcref"));
289 EXTERN char e_list_value_has_more_items_than_targets[] 291 EXTERN char e_list_value_has_more_items_than_targets[]
290 INIT(= N_("E710: List value has more items than targets")); 292 INIT(= N_("E710: List value has more items than targets"));
291 EXTERN char e_list_value_does_not_have_enough_items[] 293 EXTERN char e_list_value_does_not_have_enough_items[]
292 INIT(= N_("E711: List value does not have enough items")); 294 INIT(= N_("E711: List value does not have enough items"));
293 EXTERN char e_cannot_slice_dictionary[] 295 EXTERN char e_cannot_slice_dictionary[]