summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-08-01 19:06:03 +0200
committerBram Moolenaar <Bram@vim.org>2018-08-01 19:06:03 +0200
commitded27a1febda3db7447958b60a7d791af514d124 (patch)
treed6187c6d409aafabad0aab6e76f97132a51fe640 /src/normal.c
parentf711cb2f12458d32e082c0e3d4103e2b072947c3 (diff)
downloadvim-git-ded27a1febda3db7447958b60a7d791af514d124.tar.gz
patch 8.1.0233: "safe" argument of call_vim_function() is always FALSEv8.1.0233
Problem: "safe" argument of call_vim_function() is always FALSE. Solution: Remove the argument.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
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;