1
0
forked from aniani/vim

updated for version 7.2-152

This commit is contained in:
Bram Moolenaar
2009-04-22 12:44:48 +00:00
parent b9c1e96ce1
commit 77ab2801c7
4 changed files with 19 additions and 5 deletions

View File

@@ -2699,6 +2699,11 @@ doend:
/* Restore msg_scroll, it's set by file I/O commands, even when no
* message is actually displayed. */
msg_scroll = save_msg_scroll;
/* "silent reg" or "silent echo x" inside "redir" leaves msg_col
* somewhere in the line. Put it back in the first column. */
if (redirecting())
msg_col = 0;
}
#ifdef HAVE_SANDBOX