comparison src/errors.h @ 24808:0bc60e26a2b5 v8.2.2942

patch 8.2.2942: Vim9: error when calling function with too few arguments Commit: https://github.com/vim/vim/commit/8da6d6db340069b3307e6bce3cdd40441197efce Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 5 18:15:09 2021 +0200 patch 8.2.2942: Vim9: error when calling function with too few arguments Problem: Vim9: internal error when calling function with too few arguments Solution: Check for argument count to be too few. (closes https://github.com/vim/vim/issues/8325)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Jun 2021 18:30:03 +0200
parents 7464d4c927f5
children c9ccb1976049
comparison
equal deleted inserted replaced
24807:e651d1ef23b5 24808:0bc60e26a2b5
417 INIT(= N_("E1187: Failed to source defaults.vim")); 417 INIT(= N_("E1187: Failed to source defaults.vim"));
418 EXTERN char e_cannot_open_terminal_from_command_line_window[] 418 EXTERN char e_cannot_open_terminal_from_command_line_window[]
419 INIT(= N_("E1188: Cannot open a terminal from the command line window")); 419 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
420 EXTERN char e_cannot_use_legacy_with_command_str[] 420 EXTERN char e_cannot_use_legacy_with_command_str[]
421 INIT(= N_("E1189: Cannot use :legacy with this command: %s")); 421 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
422 EXTERN char e_one_argument_too_few[]
423 INIT(= N_("E1190: One argument too few"));
424 EXTERN char e_nr_arguments_too_few[]
425 INIT(= N_("E1190: %d arguments too few"));