# HG changeset patch # User Bram Moolenaar # Date 1380144297 -7200 # Node ID 408f2a1a953feef25a2c5c96352c82674655e797 # Parent b15c72e16ae8a9606e5442950017fe0bf295d86a updated for version 7.4.041 Problem: Visual selection does not remain after being copied over. (Axel Bender) Solution: Move when VIsual_active is reset. (Christian Brabandt) diff --git a/src/ops.c b/src/ops.c --- a/src/ops.c +++ b/src/ops.c @@ -3808,9 +3808,6 @@ do_put(regname, dir, count, flags) FALSE /* stop after 1 paste */ #endif ); -#ifdef FEAT_VISUAL - VIsual_active = FALSE; -#endif curbuf->b_op_end = curwin->w_cursor; /* For "CTRL-O p" in Insert mode, put cursor after last char */ @@ -3972,6 +3969,10 @@ end: if (regname == '=') vim_free(y_array); +#ifdef FEAT_VISUAL + VIsual_active = FALSE; +#endif + /* If the cursor is past the end of the line put it at the end. */ adjust_cursor_eol(); } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 41, +/**/ 40, /**/ 39,