1
0
forked from aniani/vim

updated for version 7.0-160

This commit is contained in:
Bram Moolenaar
2006-11-07 17:43:47 +00:00
parent 3f2d9814e5
commit d333d1e086
5 changed files with 28 additions and 22 deletions

View File

@@ -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();
}