# HG changeset patch # User vimboss # Date 1257942152 0 # Node ID e5145ff9c9b0dd7b29154c2ffd220988737c99f7 # Parent 613517f0b72a1600d58abeb8c44df9b3de1ac997 updated for version 7.2-285 diff --git a/src/edit.c b/src/edit.c --- a/src/edit.c +++ b/src/edit.c @@ -8519,7 +8519,7 @@ ins_bs(c, mode, inserted_space_p) { save_col = curwin->w_cursor.col; beginline(BL_WHITE); - if (curwin->w_cursor.col < (colnr_T)temp) + if (curwin->w_cursor.col < save_col) mincol = curwin->w_cursor.col; curwin->w_cursor.col = save_col; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 285, +/**/ 284, /**/ 283,