From 0cbac5bf6a9386ae60163141225ad402b90a8ab8 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 29 Jul 2007 13:03:35 +0000 Subject: [PATCH] updated for version 7.1-044 --- src/edit.c | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) 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, /**/