summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-09-14 19:04:14 +0000
committerBram Moolenaar <Bram@vim.org>2006-09-14 19:04:14 +0000
commitbc1a7c32e3926861ce926bcebc577a1cda1a43e1 (patch)
tree4c4bd7988862fc57fc0820ad4f82d323289f5848
parentb38dea217f846bf721c5c57be1b239a76ca0161a (diff)
updated for version 7.0-107v7.0.107
-rw-r--r--src/screen.c7
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index 6c6403e0ba..8c5e20ce29 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -1228,7 +1228,14 @@ win_update(wp)
{
mid_end = wp->w_height;
if (lastwin == firstwin)
+ {
screenclear();
+#ifdef FEAT_WINDOWS
+ /* The screen was cleared, redraw the tab pages line. */
+ if (redraw_tabline)
+ draw_tabline();
+#endif
+ }
}
}
else
diff --git a/src/version.c b/src/version.c
index fefee12566..c828f6f58e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 107,
+/**/
106,
/**/
105,