diff --git a/src/ops.c b/src/ops.c index 656285a50f..f8341a81ab 100644 --- a/src/ops.c +++ b/src/ops.c @@ -1961,8 +1961,8 @@ op_delete(oap) /* Special case: gH deletes the last line. */ del_lines(1L, FALSE); curwin->w_cursor = curpos; /* restore curwin->w_cursor */ - if (curwin->w_cursor.lnum > 1) - --curwin->w_cursor.lnum; + if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) + curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; } else { @@ -4434,7 +4434,7 @@ same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags) #endif /* - * implementation of the format operator 'gq' + * Implementation of the format operator 'gq'. */ void op_format(oap, keep_cursor) diff --git a/src/testdir/test43.in b/src/testdir/test43.in index 26f0e0c9a9..49a97d939d 100644 --- a/src/testdir/test43.in +++ b/src/testdir/test43.in @@ -13,7 +13,11 @@ x/\V^aa$ x:set magic /\v(a)(b)\2\1\1/e x/\V[ab]\(\[xy]\)\1 -x:?^1?,$w! test.out +x:$ +:set undolevels=100 +dv?bar? +Yup:" +:?^1?,$w! test.out :qa! ENDTEST @@ -25,3 +29,5 @@ ENDTEST 6 x ^aa$ x 7 (a)(b) abbaa 8 axx [ab]xx +9 foobar + diff --git a/src/testdir/test43.ok b/src/testdir/test43.ok index 425316b68d..0b37a6a61e 100644 --- a/src/testdir/test43.ok +++ b/src/testdir/test43.ok @@ -6,3 +6,6 @@ 6 x aa$ x 7 (a)(b) abba 8 axx ab]xx +9 foobar +9 foo + diff --git a/src/version.c b/src/version.c index b7fa49ceb1..c33a6f38df 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 395, /**/ 394, /**/