]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.902 v7.3.902
authorBram Moolenaar <Bram@vim.org>
Mon, 15 Apr 2013 13:55:19 +0000 (15:55 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 15 Apr 2013 13:55:19 +0000 (15:55 +0200)
Problem:    When deleting last buffer in other tab the tabline is not updated.
Solution:   Set the redraw_tabline flag. (Yukihiro Nakadaira)

src/version.c
src/window.c

index f117830b68d2eca0b99f11fdf7732bcf89ef44b7..edeab45a37da7fb3fa4d47affb309ad06821fe98 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    902,
 /**/
     901,
 /**/
index fadbb925924c2f76b0cd66a53c897dd232dc5732..2b059bcf20f58018d3f5b6f25edd8fb89552b5ca 100644 (file)
@@ -2070,6 +2070,7 @@ close_windows(buf, keep_curwin)
 
     --RedrawingDisabled;
 
+    redraw_tabline = TRUE;
     if (h != tabline_height())
        shell_new_rows();
 }