From ded27a1febda3db7447958b60a7d791af514d124 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 1 Aug 2018 19:06:03 +0200 Subject: 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. --- src/normal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/normal.c') diff --git a/src/normal.c b/src/normal.c index f3cd664a6..41c762332 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2248,7 +2248,7 @@ op_function(oparg_T *oap UNUSED) 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; -- cgit v1.2.1