summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-22 12:20:08 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-22 12:20:08 +0100
commit5b3d1bb0f5180266c4de4d815b3ea856a2fb3519 (patch)
tree2effbeb3391d960098a300e47d0c2a7d17100fff
parentc882e4d169fd5e0364bc91642040337efe7327a6 (diff)
downloadvim-git-5b3d1bb0f5180266c4de4d815b3ea856a2fb3519.tar.gz
patch 8.2.2186: Vim9: error when using 'opfunc'v8.2.2186
Problem: Vim9: error when using 'opfunc'. Solution: Do not expect a return value from 'opfunc'. (closes #7510)
-rw-r--r--src/eval.c24
-rw-r--r--src/ops.c2
-rw-r--r--src/proto/eval.pro1
-rw-r--r--src/testdir/test_vim9_func.vim15
-rw-r--r--src/version.c2
5 files changed, 39 insertions, 5 deletions
diff --git a/src/eval.c b/src/eval.c
index f84491e04..f08ae578f 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -655,10 +655,27 @@ call_func_retnr(
}
/*
+ * Call Vim script function like call_func_retnr() and drop the result.
+ * Returns FAIL when calling the function fails.
+ */
+ int
+call_func_noret(
+ char_u *func,
+ int argc,
+ typval_T *argv)
+{
+ typval_T rettv;
+
+ if (call_vim_function(func, argc, argv, &rettv) == FAIL)
+ return FAIL;
+ clear_tv(&rettv);
+ return OK;
+}
+
+/*
* Call Vim script function "func" and return the result as a string.
+ * Uses "argv" and "argc" as call_func_retnr().
* Returns NULL when calling the function fails.
- * Uses argv[0] to argv[argc - 1] for the function arguments. argv[argc] should
- * have type VAR_UNKNOWN.
*/
void *
call_func_retstr(
@@ -679,8 +696,7 @@ call_func_retstr(
/*
* Call Vim script function "func" and return the result as a List.
- * Uses argv[0] to argv[argc - 1] for the function arguments. argv[argc] should
- * have type VAR_UNKNOWN.
+ * Uses "argv" and "argc" as call_func_retnr().
* Returns NULL when there is something wrong.
*/
void *
diff --git a/src/ops.c b/src/ops.c
index 743bdd43d..53bd084ec 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -3299,7 +3299,7 @@ op_function(oparg_T *oap UNUSED)
// function.
virtual_op = MAYBE;
- (void)call_func_retnr(p_opfunc, 1, argv);
+ (void)call_func_noret(p_opfunc, 1, argv);
virtual_op = save_virtual_op;
if (cmdmod.cmod_flags & CMOD_LOCKMARKS)
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index b1a2c0f14..8fa908c5c 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -18,6 +18,7 @@ varnumber_T eval_to_number(char_u *expr);
typval_T *eval_expr(char_u *arg, exarg_T *eap);
int call_vim_function(char_u *func, int argc, typval_T *argv, typval_T *rettv);
varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv);
+int call_func_noret(char_u *func, int argc, typval_T *argv);
void *call_func_retstr(char_u *func, int argc, typval_T *argv);
void *call_func_retlist(char_u *func, int argc, typval_T *argv);
int eval_foldexpr(char_u *arg, int *cp);
diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim
index 4a0c7a90c..fcfe41f2f 100644
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -1976,5 +1976,20 @@ def Test_dict_member_with_silent()
CheckScriptSuccess(lines)
enddef
+def Test_opfunc()
+ nnoremap <F3> <cmd>set opfunc=Opfunc<cr>g@
+ def g:Opfunc(_: any): string
+ setline(1, 'ASDF')
+ return ''
+ enddef
+ new
+ setline(1, 'asdf')
+ feedkeys("\<F3>$", 'x')
+ assert_equal('ASDF', getline(1))
+
+ bwipe!
+ nunmap <F3>
+enddef
+
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
diff --git a/src/version.c b/src/version.c
index d18033e4c..a99765c25 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2186,
+/**/
2185,
/**/
2184,