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, /**/