From b8dc4d4cdf95bac309bfff342da0eee5159c1c7e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 25 Sep 2007 12:20:19 +0000 Subject: [PATCH] updated for version 7.1-118 --- src/ops.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ops.c b/src/ops.c index 29fac4cd4..8f0031401 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 8abc48110..9a40b66e4 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 118, /**/ 117, /**/ -- 2.50.1