summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-04-15 15:55:19 +0200
committerBram Moolenaar <Bram@vim.org>2013-04-15 15:55:19 +0200
commit4c7e9db0d6502054eafafcc9aea70ea71c45f551 (patch)
tree657b5019203bc6813c464b4f65aea8aa592d75d5
parent687a29c5e26b2fa69f3b2cb3504d1fd2f090daf7 (diff)
downloadvim-git-4c7e9db0d6502054eafafcc9aea70ea71c45f551.tar.gz
updated for version 7.3.902v7.3.902
Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
-rw-r--r--src/version.c2
-rw-r--r--src/window.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
index f117830b6..edeab45a3 100644
--- 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
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();
}