From: Bram Moolenaar Date: Sun, 29 Jul 2007 13:03:35 +0000 (+0000) Subject: updated for version 7.1-044 X-Git-Tag: v7.1.044 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0cbac5bf6a9386ae60163141225ad402b90a8ab8;p=vim updated for version 7.1-044 --- diff --git a/src/edit.c b/src/edit.c index 611354160..3da53bfdc 100644 --- a/src/edit.c +++ b/src/edit.c @@ -8000,7 +8000,8 @@ ins_shift(c, lastc) /* * 0^D and ^^D: remove all indent. */ - if ((lastc == '0' || lastc == '^') && curwin->w_cursor.col) + if (c == Ctrl_D && (lastc == '0' || lastc == '^') + && curwin->w_cursor.col > 0) { --curwin->w_cursor.col; (void)del_char(FALSE); /* delete the '^' or '0' */ diff --git a/src/version.c b/src/version.c index c3f9bc520..7f9215ee4 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 */ +/**/ + 44, /**/ 43, /**/