summaryrefslogtreecommitdiff
path: root/src/proto/eval.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-09 17:07:29 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-09 17:07:29 +0200
commit79815f1ec77406f2f21a618c053e5793b597db7a (patch)
tree7a99af24de8d373cc9a12408b39a57118a6577b9 /src/proto/eval.pro
parentfc4ad616073a169badfb2b9906fee2844f76f730 (diff)
downloadvim-git-79815f1ec77406f2f21a618c053e5793b597db7a.tar.gz
patch 7.4.2008v7.4.2008
Problem: evalcmd() has a confusing name. Solution: Rename to execute(). Make silent optional. Support a list of commands.
Diffstat (limited to 'src/proto/eval.pro')
-rw-r--r--src/proto/eval.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index 28edd782c..e81669b05 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -88,7 +88,7 @@ char_u *get_expr_name(expand_T *xp, int idx);
int call_func(char_u *funcname, int len, typval_T *rettv, int argcount_in, typval_T *argvars_in, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, partial_T *partial, dict_T *selfdict_in);
buf_T *buflist_find_by_name(char_u *name, int curtab_only);
int func_call(char_u *name, typval_T *args, partial_T *partial, dict_T *selfdict, typval_T *rettv);
-void evalcmd_redir_str(char_u *value, int value_len);
+void execute_redir_str(char_u *value, int value_len);
void dict_extend(dict_T *d1, dict_T *d2, char_u *action);
void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv);
float_T vim_round(float_T f);