diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-11-07 17:43:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-11-07 17:43:47 +0000 |
commit | d333d1e08638c1e2ba529cf60202168c3af6f453 (patch) | |
tree | 2a02f359356427a803b40f4b1e1c888ae14f0390 /src/ex_docmd.c | |
parent | 3f2d9814e58b88c7d298df849e6532791026fa53 (diff) | |
download | vim-d333d1e08638c1e2ba529cf60202168c3af6f453.zip |
updated for version 7.0-160
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 4183e9105..3e97f9517 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(); } |