summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/version.c2
-rw-r--r--src/vim9execute.c2
-rw-r--r--src/vim9type.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/src/version.c b/src/version.c
index bb04cd3844..3611cb20ba 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1754,
+/**/
1753,
/**/
1752,
diff --git a/src/vim9execute.c b/src/vim9execute.c
index 6c208786a3..2eb6ba4cae 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -5451,8 +5451,8 @@ exec_instructions(ectx_T *ectx)
{
where.wt_index = ct->ct_arg_idx;
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);
if (r == FAIL)
goto on_error;
diff --git a/src/vim9type.c b/src/vim9type.c
index 1363a1c3e7..4c1693668a 100644
--- a/src/vim9type.c
+++ b/src/vim9type.c
@@ -682,8 +682,8 @@ check_typval_arg_type(
{
where.wt_index = arg_idx;
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);
}