# HG changeset patch # User vimboss # Date 1201378546 0 # Node ID 03ec0f2b9a403b1cbc494eac6c038076ece0b37c # Parent f79bb032002565143e3392cca0540216e7f93e28 updated for version 7.1-242 diff --git a/src/search.c b/src/search.c --- a/src/search.c +++ b/src/search.c @@ -3637,7 +3637,7 @@ current_block(oap, count, include, what, oap->inclusive = FALSE; if (sol) incl(&curwin->w_cursor); - else if (lt(start_pos, curwin->w_cursor)) + else if (ltoreq(start_pos, curwin->w_cursor)) /* Include the character under the cursor. */ oap->inclusive = TRUE; else @@ -3754,6 +3754,10 @@ current_tagblock(oap, count_arg, include old_pos = curwin->w_cursor; old_end = curwin->w_cursor; /* remember where we started */ old_start = old_end; +#ifdef FEAT_VISUAL + if (!VIsual_active || *p_sel == 'e') +#endif + decl(&old_end); /* old_end is inclusive */ /* * If we start on "" select that block. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 242, +/**/ 241, /**/ 240,