Skip to content

Commit

Permalink
updated for version 7.4.381
Browse files Browse the repository at this point in the history
Problem:    Get u_undo error when backspacing in Insert mode deletes more than
            one line break. (Ayberk Ozgur)
Solution:   Also decrement Insstart.lnum.
  • Loading branch information
brammool committed Jul 23, 2014
1 parent 12a28d4 commit 17529ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/edit.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -8833,6 +8833,7 @@ ins_bs(c, mode, inserted_space_p)
return FALSE; return FALSE;
--Insstart_orig.lnum; --Insstart_orig.lnum;
Insstart_orig.col = MAXCOL; Insstart_orig.col = MAXCOL;
Insstart = Insstart_orig;
} }
/* /*
* In replace mode: * In replace mode:
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -734,6 +734,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
381,
/**/ /**/
380, 380,
/**/ /**/
Expand Down

0 comments on commit 17529ae

Please sign in to comment.