From 4c7e9db0d6502054eafafcc9aea70ea71c45f551 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 15 Apr 2013 15:55:19 +0200 Subject: 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 f117830b6..edeab45a3 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 fadbb9259..2b059bcf2 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(); } -- cgit v1.2.1