0
0
mirror of https://github.com/vim/vim.git synced 2025-10-10 06:24:10 -04:00

updated for version 7.3.395

Problem:    "dv?bar" in the last line deletes too much and breaks undo.
Solution:   Only adjust the cursor position when it's after the last line of
            the buffer.  Add a test. (Christian Brabandt)
This commit is contained in:
Bram Moolenaar
2012-01-10 13:44:27 +01:00
parent 738f8fc8ed
commit 66accae339
4 changed files with 15 additions and 4 deletions

View File

@@ -1961,8 +1961,8 @@ op_delete(oap)
/* Special case: gH<Del> 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)