summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ops.c3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index e5db31347..fbac2c24a 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -422,8 +422,9 @@ shift_block(oap, amount)
#ifdef FEAT_MBYTE
if (has_mbyte)
bd.textstart += (*mb_ptr2len)(bd.textstart);
+ else
#endif
- ++bd.textstart;
+ ++bd.textstart;
}
for ( ; vim_iswhite(*bd.textstart); )
{
diff --git a/src/version.c b/src/version.c
index 7654400bc..0d03b6cc5 100644
--- a/src/version.c
+++ b/src/version.c
@@ -682,6 +682,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 292,
+/**/
291,
/**/
290,