comparison src/match.c @ 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 89e1d67814a9
children 86683eee58ac
comparison
equal deleted inserted replaced
30014:3fb163e2ef6c 30015:adb0de8be4ce
1085 if (in_vim9script() 1085 if (in_vim9script()
1086 && (check_for_list_arg(argvars, 0) == FAIL 1086 && (check_for_list_arg(argvars, 0) == FAIL
1087 || check_for_opt_number_arg(argvars, 1) == FAIL)) 1087 || check_for_opt_number_arg(argvars, 1) == FAIL))
1088 return; 1088 return;
1089 1089
1090 if (argvars[0].v_type != VAR_LIST) 1090 if (check_for_list_arg(argvars, 0) == FAIL)
1091 { 1091 return;
1092 emsg(_(e_list_required));
1093 return;
1094 }
1095 win = get_optional_window(argvars, 1); 1092 win = get_optional_window(argvars, 1);
1096 if (win == NULL) 1093 if (win == NULL)
1097 return; 1094 return;
1098 1095
1099 if ((l = argvars[0].vval.v_list) != NULL) 1096 if ((l = argvars[0].vval.v_list) != NULL)