diff options
author | vimboss <devnull@localhost> | 2007-09-25 12:20:19 +0000 |
---|---|---|
committer | vimboss <devnull@localhost> | 2007-09-25 12:20:19 +0000 |
commit | 5421de362c9a379aa1245bbc8f3818078a8e29d0 (patch) | |
tree | a96dda410f9eb8bb14dbc4d25578628bc3f74833 | |
parent | 458812fa8cfb9d0cf843a73d45affd7635a2f532 (diff) | |
download | vim-5421de362c9a379aa1245bbc8f3818078a8e29d0.tar.gz |
-rw-r--r-- | src/ops.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -2605,7 +2605,7 @@ op_change(oap) /* Auto-indenting may have changed the indent. If the cursor was past * the indent, exclude that indent change from the inserted text. */ firstline = ml_get(oap->start.lnum); - if (bd.textcol > pre_indent) + if (bd.textcol > (colnr_T)pre_indent) { long new_indent = (long)(skipwhite(firstline) - firstline); diff --git a/src/version.c b/src/version.c index 8abc4811..9a40b66e 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 118, +/**/ 117, /**/ 116, |