# HG changeset patch # User vimboss # Date 1233744385 0 # Node ID 05952d133506353938f50f0b22b0097b6cdf0afd # Parent 4589d1792c036e15d1f9e72c0252fb243aa6d5e4 updated for version 7.2-095 diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -6783,6 +6783,8 @@ nv_replace(cap) /* Visual mode "r" */ if (VIsual_active) { + if (got_int) + reset_VIsual(); nv_operator(cap); return; } @@ -7839,7 +7841,7 @@ nv_g_cmd(cap) else i = curwin->w_leftcol; /* Go to the middle of the screen line. When 'number' is on and lines - * are wrapping the middle can be more to the left.*/ + * are wrapping the middle can be more to the left. */ if (cap->nchar == 'm') i += (W_WIDTH(curwin) - curwin_col_off() + ((curwin->w_p_wrap && i > 0) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 95, +/**/ 94, /**/ 93,