From 79f7e1475a34055c2f6ef6c2e8c863be83bdee67 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 3 Jul 2013 13:16:23 +0200 Subject: [PATCH] updated for version 7.3.1290 Problem: CTRL-R = in Insert mode changes the start of the insert position. (Ingo Karkat) Solution: Only break undo, don't start a new insert. --- src/edit.c | 1 - src/version.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/edit.c b/src/edit.c index e60ec1995..ee308bd79 100644 --- a/src/edit.c +++ b/src/edit.c @@ -8145,7 +8145,6 @@ ins_reg() if (im_on) im_set_active(TRUE); # endif - Insstart = curwin->w_cursor; } if (regname == NUL || !valid_yank_reg(regname, FALSE)) { diff --git a/src/version.c b/src/version.c index 33762fcb2..68abf943f 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 */ +/**/ + 1290, /**/ 1289, /**/ -- 2.50.1