0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00

updated for version 7.3.1270

Problem:    Using "Vp" in an empty buffer can't be undone. (Hauke Petersen)
Solution:   Save one line in an empty buffer. (Christian Brabandt)
This commit is contained in:
Bram Moolenaar 2013-06-29 17:19:28 +02:00
parent 6b487147ac
commit 10315b1201
2 changed files with 5 additions and 1 deletions

View File

@ -3497,7 +3497,9 @@ do_put(regname, dir, count, flags)
#endif
if (dir == FORWARD)
++lnum;
if (u_save(lnum - 1, lnum) == FAIL)
/* In an empty buffer the empty line is going to be replaced, include
* it in the saved lines. */
if ((bufempty() ? u_save(0, 1) : u_save(lnum - 1, lnum)) == FAIL)
goto end;
#ifdef FEAT_FOLDING
if (dir == FORWARD)

View File

@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1270,
/**/
1269,
/**/