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 #11027)
diff --git a/src/insexpand.c b/src/insexpand.c
index 1ff1c99..b91c230 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -2930,9 +2930,7 @@
if (!undo_allowed())
return;
- if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
- emsg(_(e_invalid_argument));
- else
+ if (check_for_nonnull_list_arg(argvars, 1) != FAIL)
{
startcol = (int)tv_get_number_chk(&argvars[0], NULL);
if (startcol > 0)
@@ -3143,11 +3141,8 @@
if (argvars[0].v_type != VAR_UNKNOWN)
{
- if (argvars[0].v_type != VAR_LIST)
- {
- emsg(_(e_list_required));
+ if (check_for_list_arg(argvars, 0) == FAIL)
return;
- }
what_list = argvars[0].vval.v_list;
}
get_complete_info(what_list, rettv->vval.v_dict);