]> granicus.if.org Git - vim/commitdiff
updated for version 7.1-044 v7.1.044
authorBram Moolenaar <Bram@vim.org>
Sun, 29 Jul 2007 13:03:35 +0000 (13:03 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 29 Jul 2007 13:03:35 +0000 (13:03 +0000)
src/edit.c
src/version.c

index 611354160cf753f97d33f892b6b5cadc47c67cb3..3da53bfdc2a0a9b99a7c37360aa4a3398c6d0570 100644 (file)
@@ -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' */
index c3f9bc520ab073ba9afa9a615409da3e67e4eac4..7f9215ee44988cbec69f1439bb36092d17f122e1 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    44,
 /**/
     43,
 /**/