patch 9.0.1754: still Ci breakage (after 9.0.1741)
Commit:
https://github.com/vim/vim/commit/f244b2fbf2df7f984074c287b3d854bc62472b23
Author: LemonBoy <[email protected]>
Date: Sat Aug 19 16:02:04 2023 +0200
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 <[email protected]>
Co-authored-by: LemonBoy <[email protected]>
diff --git a/src/version.c b/src/version.c
index bb04cd384..3611cb20b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -695,6 +695,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1754,
/**/
1753,
/**/
diff --git a/src/vim9execute.c b/src/vim9execute.c
index 6c208786a..2eb6ba4ca 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 1363a1c3e..4c1693668 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);
}
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1qXMjH-0097dW-9V%40256bit.org.