summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-11-07 17:43:47 +0000
committerBram Moolenaar <Bram@vim.org>2006-11-07 17:43:47 +0000
commitd333d1e08638c1e2ba529cf60202168c3af6f453 (patch)
tree2a02f359356427a803b40f4b1e1c888ae14f0390 /src/ex_docmd.c
parent3f2d9814e58b88c7d298df849e6532791026fa53 (diff)
updated for version 7.0-160v7.0.160
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 4183e9105f..3e97f95173 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8219,8 +8219,9 @@ ex_at(eap)
c = *eap->arg;
if (c == NUL || (c == '*' && *eap->cmd == '*'))
c = '@';
- /* put the register in mapbuf */
- if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL) == FAIL)
+ /* Put the register in the typeahead buffer with the "silent" flag. */
+ if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
+ == FAIL)
{
beep_flush();
}