# HG changeset patch # User Bram Moolenaar # Date 1355332832 -3600 # Node ID 6834d6aeae099d6bfdff5151aa2174cafc22647f # Parent 6364a9ae1d613e75d30271d8f521a980be6f0093 updated for version 7.3.761 Problem: In Visual mode a "-p does not work. (Marcin Szamotulski) Solution: Avoid writing to "- before putting it. (Christian Brabandt) diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -9412,14 +9412,15 @@ nv_put(cap) # ifdef FEAT_CLIPBOARD adjust_clip_reg(®name); # endif - if (regname == 0 || regname == '"' || VIM_ISDIGIT(regname) + if (regname == 0 || regname == '"' + || VIM_ISDIGIT(regname) || regname == '-' # ifdef FEAT_CLIPBOARD || (clip_unnamed && (regname == '*' || regname == '+')) # endif ) { - /* the delete is going to overwrite the register we want to + /* The delete is going to overwrite the register we want to * put, save it first. */ reg1 = get_register(regname, TRUE); } diff --git a/src/testdir/test48.in b/src/testdir/test48.in --- a/src/testdir/test48.in +++ b/src/testdir/test48.in @@ -54,8 +54,12 @@ C are belong to vim ^O3li4li4li <-- should show the name of a noted text editor ^o4li4li4li <-- and its version number-dd :" +:" Test for yanking and pasting using the small delete register +gg/^foo +dewve"-p :wq! test.out ENDTEST +foo, bar keyword keyw all your base are belong to us 1 2 3 4 5 6 diff --git a/src/testdir/test48.ok b/src/testdir/test48.ok --- a/src/testdir/test48.ok +++ b/src/testdir/test48.ok @@ -1,3 +1,4 @@ +, foo keyword keyword all your base are belong to vim diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 761, +/**/ 760, /**/ 759,