diff src/window.c @ 4305:b01e3cff9253 v7.3.902

updated for version 7.3.902 Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
author Bram Moolenaar <bram@vim.org>
date Mon, 15 Apr 2013 15:55:19 +0200
parents dc3efb6d5a08
children 04736b4030ec
line wrap: on
line diff
--- a/src/window.c
+++ b/src/window.c
@@ -2070,6 +2070,7 @@ close_windows(buf, keep_curwin)
 
     --RedrawingDisabled;
 
+    redraw_tabline = TRUE;
     if (h != tabline_height())
 	shell_new_rows();
 }