]> granicus.if.org Git - vim/commitdiff
updated for version 7.0-139 v7.0.139
authorBram Moolenaar <Bram@vim.org>
Tue, 17 Oct 2006 11:37:50 +0000 (11:37 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 17 Oct 2006 11:37:50 +0000 (11:37 +0000)
src/edit.c
src/version.c

index 3beb431b44ab8392e547166f0193fc9b69bc0b08..e117bedf4ff7bd1f5d991a02ccd18084b172d06f 100644 (file)
@@ -8822,7 +8822,11 @@ ins_pageup()
     if (mod_mask & MOD_MASK_CTRL)
     {
        /* <C-PageUp>: tab page back */
-       goto_tabpage(-1);
+       if (first_tabpage->tp_next != NULL)
+       {
+           start_arrow(&curwin->w_cursor);
+           goto_tabpage(-1);
+       }
        return;
     }
 #endif
@@ -8881,7 +8885,11 @@ ins_pagedown()
     if (mod_mask & MOD_MASK_CTRL)
     {
        /* <C-PageDown>: tab page forward */
-       goto_tabpage(0);
+       if (first_tabpage->tp_next != NULL)
+       {
+           start_arrow(&curwin->w_cursor);
+           goto_tabpage(0);
+       }
        return;
     }
 #endif
index 6544a8411a11c8acf1b83d973d4ef17dc3e164a4..52eb65cd72a1f7f793bafa6796db5ea94c43e43e 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    139,
 /**/
     138,
 /**/