From 10315b1201716a10d39477fc09e3eb89e944191f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 29 Jun 2013 17:19:28 +0200 Subject: [PATCH] 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) --- src/ops.c | 4 +++- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ops.c b/src/ops.c index 57c4b0adb..eaad703e6 100644 --- a/src/ops.c +++ b/src/ops.c @@ -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) diff --git a/src/version.c b/src/version.c index 8022a78f3..18588e8c4 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1270, /**/ 1269, /**/ -- 2.50.1