comparison src/proto/eval.pro @ 14439:e4c553e9132b v8.1.0233

patch 8.1.0233: "safe" argument of call_vim_function() is always FALSE commit https://github.com/vim/vim/commit/ded27a1febda3db7447958b60a7d791af514d124 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 1 19:06:03 2018 +0200 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.
author Christian Brabandt <cb@256bit.org>
date Wed, 01 Aug 2018 19:15:05 +0200
parents c62601adad69
children 0a3b9ecf7cb8
comparison
equal deleted inserted replaced
14438:af83b1cb4702 14439:e4c553e9132b
17 char_u *eval_to_string_safe(char_u *arg, char_u **nextcmd, int use_sandbox); 17 char_u *eval_to_string_safe(char_u *arg, char_u **nextcmd, int use_sandbox);
18 varnumber_T eval_to_number(char_u *expr); 18 varnumber_T eval_to_number(char_u *expr);
19 list_T *eval_spell_expr(char_u *badword, char_u *expr); 19 list_T *eval_spell_expr(char_u *badword, char_u *expr);
20 int get_spellword(list_T *list, char_u **pp); 20 int get_spellword(list_T *list, char_u **pp);
21 typval_T *eval_expr(char_u *arg, char_u **nextcmd); 21 typval_T *eval_expr(char_u *arg, char_u **nextcmd);
22 int call_vim_function(char_u *func, int argc, typval_T *argv, typval_T *rettv, int safe); 22 int call_vim_function(char_u *func, int argc, typval_T *argv, typval_T *rettv);
23 varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv, int safe); 23 varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv);
24 void *call_func_retstr(char_u *func, int argc, typval_T *argv, int safe); 24 void *call_func_retstr(char_u *func, int argc, typval_T *argv);
25 void *call_func_retlist(char_u *func, int argc, typval_T *argv, int safe); 25 void *call_func_retlist(char_u *func, int argc, typval_T *argv);
26 int eval_foldexpr(char_u *arg, int *cp); 26 int eval_foldexpr(char_u *arg, int *cp);
27 void ex_let(exarg_T *eap); 27 void ex_let(exarg_T *eap);
28 void list_hashtable_vars(hashtab_T *ht, char_u *prefix, int empty, int *first); 28 void list_hashtable_vars(hashtab_T *ht, char_u *prefix, int empty, int *first);
29 char_u *get_lval(char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int flags, int fne_flags); 29 char_u *get_lval(char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int flags, int fne_flags);
30 void clear_lval(lval_T *lp); 30 void clear_lval(lval_T *lp);