From 9248e6e12e6042562d91d9ad2b81f5a0692889df Mon Sep 17 00:00:00 2001 From: Bram Moolenaar <Bram@vim.org> Date: Thu, 8 Mar 2007 12:10:13 +0000 Subject: [PATCH] updated for version 7.0-211 --- src/edit.c | 7 ++++++- src/version.c | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/edit.c b/src/edit.c index 25a76a2792..a4be291ef3 100644 --- a/src/edit.c +++ b/src/edit.c @@ -8250,7 +8250,12 @@ ins_bs(c, mode, inserted_space_p) #endif mincol = 0; /* keep indent */ - if (mode == BACKSPACE_LINE && curbuf->b_p_ai + if (mode == BACKSPACE_LINE + && (curbuf->b_p_ai +#ifdef FEAT_CINDENT + || cindent_on() +#endif + ) #ifdef FEAT_RIGHTLEFT && !revins_on #endif diff --git a/src/version.c b/src/version.c index 3d7ce93052..af6f548cb2 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 */ +/**/ + 211, /**/ 210, /**/ -- GitLab