# HG changeset patch # User Bram Moolenaar # Date 1366034119 -7200 # Node ID b01e3cff92530f6c317e0cf2c0ba0fb4f97df883 # Parent 101e738fc55d646295114d372dadcbafa57bdb73 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 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 902, +/**/ 901, /**/ 900, diff --git a/src/window.c b/src/window.c --- 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(); }