updated for version 7.1-044
diff --git a/src/edit.c b/src/edit.c
index 6113541..3da53bf 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -8000,7 +8000,8 @@
     /*
      * 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 c3f9bc5..7f9215e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    44,
+/**/
     43,
 /**/
     42,