0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.4.605

Problem:    The # register is not writable, it cannot be restored after
            jumping around.
Solution:   Make the # register writable. (Marcin Szamotulski)
This commit is contained in:
Bram Moolenaar
2015-01-27 18:44:16 +01:00
parent 6bf7c523ad
commit 3b3a9498d1
5 changed files with 55 additions and 16 deletions

View File

@@ -1150,7 +1150,7 @@ do_buffer(action, start, dir, count, forceit)
{
/* don't warn when deleting */
if (!unload)
EMSGN(_("E86: Buffer %ld does not exist"), count);
EMSGN(_(e_nobufnr), count);
}
else if (dir == FORWARD)
EMSG(_("E87: Cannot go beyond last buffer"));