comparison src/errors.h @ 30015:adb0de8be4ce v9.0.0345

patch 9.0.0345: error message for list argument could be clearer Commit: https://github.com/vim/vim/commit/d83392a43a48c566c0f3b76382a3648584dae32b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 1 12:22:46 2022 +0100 patch 9.0.0345: error message for list argument could be clearer Problem: Error message for list argument could be clearer. Solution: Include the argument number. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/11027)
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Sep 2022 13:30:05 +0200
parents 86eb4aba16c3
children 0e9b58353412
comparison
equal deleted inserted replaced
30014:3fb163e2ef6c 30015:adb0de8be4ce
3316 EXTERN char e_cannot_specify_both_type_and_types[] 3316 EXTERN char e_cannot_specify_both_type_and_types[]
3317 INIT(= N_("E1295: Cannot specify both 'type' and 'types'")); 3317 INIT(= N_("E1295: Cannot specify both 'type' and 'types'"));
3318 EXTERN char e_can_only_use_left_padding_when_column_is_zero[] 3318 EXTERN char e_can_only_use_left_padding_when_column_is_zero[]
3319 INIT(= N_("E1296: Can only use left padding when column is zero")); 3319 INIT(= N_("E1296: Can only use left padding when column is zero"));
3320 #endif 3320 #endif
3321 #ifdef FEAT_EVAL
3321 EXTERN char e_non_null_dict_required_for_argument_nr[] 3322 EXTERN char e_non_null_dict_required_for_argument_nr[]
3322 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d")); 3323 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d"));
3324 EXTERN char e_non_null_list_required_for_argument_nr[]
3325 INIT(= N_("E1298: Non-NULL List required for argument %d"));
3326 #endif