summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2009-11-11 12:22:32 +0000
committervimboss <devnull@localhost>2009-11-11 12:22:32 +0000
commitf851851d9dbc603eccf79b123b828d73be964293 (patch)
treeb1b3ac42b7dabefd52ec24e1f78f97024e8670ef
parente93c02fbbc2b7ac7fcfa0e6c93257fd64c385337 (diff)
downloadvim-f851851d9dbc603eccf79b123b828d73be964293.tar.gz
updated for version 7.2-285v7.2.285v7-2-285
-rw-r--r--src/edit.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index 347571f4..d825d83e 100644
--- 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
index 8a71cbe3..fbb9f44a 100644
--- 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,