diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-08-01 19:06:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-08-01 19:06:03 +0200 |
commit | ded27a1febda3db7447958b60a7d791af514d124 (patch) | |
tree | d6187c6d409aafabad0aab6e76f97132a51fe640 /src/proto/eval.pro | |
parent | f711cb2f12458d32e082c0e3d4103e2b072947c3 (diff) | |
download | vim-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/proto/eval.pro')
-rw-r--r-- | src/proto/eval.pro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index 98f665671..537b6490a 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -19,10 +19,10 @@ varnumber_T eval_to_number(char_u *expr); list_T *eval_spell_expr(char_u *badword, char_u *expr); int get_spellword(list_T *list, char_u **pp); typval_T *eval_expr(char_u *arg, char_u **nextcmd); -int call_vim_function(char_u *func, int argc, typval_T *argv, typval_T *rettv, int safe); -varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv, int safe); -void *call_func_retstr(char_u *func, int argc, typval_T *argv, int safe); -void *call_func_retlist(char_u *func, int argc, typval_T *argv, int safe); +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); +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); void ex_let(exarg_T *eap); void list_hashtable_vars(hashtab_T *ht, char_u *prefix, int empty, int *first); |