summaryrefslogtreecommitdiffstats
path: root/src/ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index e5db31347c..fbac2c24a2 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); )
{