summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-09-25 12:20:19 +0000
committerBram Moolenaar <Bram@vim.org>2007-09-25 12:20:19 +0000
commitb8dc4d4cdf95bac309bfff342da0eee5159c1c7e (patch)
treea96dda410f9eb8bb14dbc4d25578628bc3f74833
parent7b188629209a19f21b11c665581ff3dcfd7b4d46 (diff)
updated for version 7.1-118v7.1.118
-rw-r--r--src/ops.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index 29fac4cd4f..8f0031401e 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -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 8abc481109..9a40b66e43 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,