commit | ded27a1febda3db7447958b60a7d791af514d124 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Aug 01 19:06:03 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Aug 01 19:06:03 2018 +0200 |
tree | d6187c6d409aafabad0aab6e76f97132a51fe640 | |
parent | f711cb2f12458d32e082c0e3d4103e2b072947c3 [diff] [blame] |
patch 8.1.0233: "safe" argument of call_vim_function() is always FALSE Problem: "safe" argument of call_vim_function() is always FALSE. Solution: Remove the argument.
diff --git a/src/normal.c b/src/normal.c index f3cd664..41c7623 100644 --- a/src/normal.c +++ b/src/normal.c
@@ -2248,7 +2248,7 @@ virtual_op = MAYBE; # endif - (void)call_func_retnr(p_opfunc, 1, argv, FALSE); + (void)call_func_retnr(p_opfunc, 1, argv); # ifdef FEAT_VIRTUALEDIT virtual_op = save_virtual_op;