summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-11-11 12:22:32 +0000
committerBram Moolenaar <Bram@vim.org>2009-11-11 12:22:32 +0000
commit76675565acc95e5b434e79213ffd3e995dabfbb5 (patch)
treeb1b3ac42b7dabefd52ec24e1f78f97024e8670ef /src/edit.c
parent3234cc6a3169b18e02a725157cb0f405cd72dd2a (diff)
updated for version 7.2-285v7.2.285
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index 347571f478..d825d83eaf 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;
}