commit | 79815f1ec77406f2f21a618c053e5793b597db7a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 09 17:07:29 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 09 17:07:29 2016 +0200 |
tree | 7a99af24de8d373cc9a12408b39a57118a6577b9 | |
parent | fc4ad616073a169badfb2b9906fee2844f76f730 [diff] [blame] |
patch 7.4.2008 Problem: evalcmd() has a confusing name. Solution: Rename to execute(). Make silent optional. Support a list of commands.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index b892b63..f8b50ed 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -9456,9 +9456,9 @@ char_u *arg = eap->arg; #ifdef FEAT_EVAL - if (redir_evalcmd) + if (redir_execute) { - EMSG(_("E930: Cannot use :redir inside evalcmd()")); + EMSG(_("E930: Cannot use :redir inside execute()")); return; } #endif