1
0
forked from aniani/vim

patch 9.0.1754: still Ci breakage (after 9.0.1741)

Problem: still ci breakage (after 9.0.1741)
Solution: fix remaining issue

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: LemonBoy <thatlemon@gmail.com>
This commit is contained in:
LemonBoy
2023-08-19 16:02:04 +02:00
committed by Christian Brabandt
parent b5f6fe9ca2
commit f244b2fbf2
3 changed files with 4 additions and 2 deletions

View File

@@ -695,6 +695,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1754,
/**/ /**/
1753, 1753,
/**/ /**/

View File

@@ -5451,8 +5451,8 @@ exec_instructions(ectx_T *ectx)
{ {
where.wt_index = ct->ct_arg_idx; where.wt_index = ct->ct_arg_idx;
where.wt_kind = ct->ct_is_var ? WT_VARIABLE : WT_ARGUMENT; where.wt_kind = ct->ct_is_var ? WT_VARIABLE : WT_ARGUMENT;
where.wt_func_name = ectx->ec_where.wt_func_name;
} }
where.wt_func_name = ectx->ec_where.wt_func_name;
r = check_typval_type(ct->ct_type, tv, where); r = check_typval_type(ct->ct_type, tv, where);
if (r == FAIL) if (r == FAIL)
goto on_error; goto on_error;

View File

@@ -682,8 +682,8 @@ check_typval_arg_type(
{ {
where.wt_index = arg_idx; where.wt_index = arg_idx;
where.wt_kind = WT_ARGUMENT; where.wt_kind = WT_ARGUMENT;
where.wt_func_name = func_name;
} }
where.wt_func_name = func_name;
return check_typval_type(expected, actual_tv, where); return check_typval_type(expected, actual_tv, where);
} }