updated for version 7.1-242
diff --git a/src/search.c b/src/search.c
index 4bbd3c3..1ad1df3 100644
--- a/src/search.c
+++ b/src/search.c
@@ -3637,7 +3637,7 @@
 	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 @@
     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 "<aaa>" select that block.
diff --git a/src/version.c b/src/version.c
index b8e6a04..7d70348 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    242,
+/**/
     241,
 /**/
     240,