From: Bram Moolenaar Date: Mon, 15 Apr 2013 13:55:19 +0000 (+0200) Subject: updated for version 7.3.902 X-Git-Tag: v7.3.902 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c7e9db0d6502054eafafcc9aea70ea71c45f551;p=vim 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) --- 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(); }