From c7d3e55b3b8a62a423e92d8d01c30ef36fbb28af Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 15 Apr 2013 15:55:19 +0200 Subject: [PATCH] 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) --- src/version.c | 2 ++ src/window.c | 1 + 2 files changed, 3 insertions(+) diff --git a/src/version.c b/src/version.c index f117830b68..edeab45a37 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 902, /**/ 901, /**/ diff --git a/src/window.c b/src/window.c index fadbb92592..2b059bcf20 100644 --- 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(); }