|
Karsten Hopp |
443337 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
443337 |
Subject: Patch 7.0.107
|
|
Karsten Hopp |
443337 |
Fcc: outbox
|
|
Karsten Hopp |
443337 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
443337 |
Mime-Version: 1.0
|
|
Karsten Hopp |
443337 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
443337 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
443337 |
------------
|
|
Karsten Hopp |
443337 |
|
|
Karsten Hopp |
443337 |
Patch 7.0.107
|
|
Karsten Hopp |
443337 |
Problem: Incremental search doesn't redraw the text tabline. (Ilya Bobir)
|
|
Karsten Hopp |
443337 |
Also happens in other situations with one window in a tab page.
|
|
Karsten Hopp |
443337 |
Solution: Redraw the tabline after clearing the screen.
|
|
Karsten Hopp |
443337 |
Files: src/screen.c
|
|
Karsten Hopp |
443337 |
|
|
Karsten Hopp |
443337 |
|
|
Karsten Hopp |
443337 |
*** ../vim-7.0.106/src/screen.c Tue Aug 29 17:28:56 2006
|
|
Karsten Hopp |
443337 |
--- src/screen.c Thu Sep 14 21:00:32 2006
|
|
Karsten Hopp |
443337 |
***************
|
|
Karsten Hopp |
443337 |
*** 1228,1234 ****
|
|
Karsten Hopp |
443337 |
--- 1228,1241 ----
|
|
Karsten Hopp |
443337 |
{
|
|
Karsten Hopp |
443337 |
mid_end = wp->w_height;
|
|
Karsten Hopp |
443337 |
if (lastwin == firstwin)
|
|
Karsten Hopp |
443337 |
+ {
|
|
Karsten Hopp |
443337 |
screenclear();
|
|
Karsten Hopp |
443337 |
+ #ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
443337 |
+ /* The screen was cleared, redraw the tab pages line. */
|
|
Karsten Hopp |
443337 |
+ if (redraw_tabline)
|
|
Karsten Hopp |
443337 |
+ draw_tabline();
|
|
Karsten Hopp |
443337 |
+ #endif
|
|
Karsten Hopp |
443337 |
+ }
|
|
Karsten Hopp |
443337 |
}
|
|
Karsten Hopp |
443337 |
}
|
|
Karsten Hopp |
443337 |
else
|
|
Karsten Hopp |
443337 |
*** ../vim-7.0.106/src/version.c Thu Sep 14 13:35:17 2006
|
|
Karsten Hopp |
443337 |
--- src/version.c Thu Sep 14 21:03:40 2006
|
|
Karsten Hopp |
443337 |
***************
|
|
Karsten Hopp |
443337 |
*** 668,669 ****
|
|
Karsten Hopp |
443337 |
--- 668,671 ----
|
|
Karsten Hopp |
443337 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
443337 |
+ /**/
|
|
Karsten Hopp |
443337 |
+ 107,
|
|
Karsten Hopp |
443337 |
/**/
|
|
Karsten Hopp |
443337 |
|
|
Karsten Hopp |
443337 |
--
|
|
Karsten Hopp |
443337 |
VOICE OVER: As the horrendous Black Beast lunged forward, escape for Arthur
|
|
Karsten Hopp |
443337 |
and his knights seemed hopeless, when, suddenly ... the animator
|
|
Karsten Hopp |
443337 |
suffered a fatal heart attack.
|
|
Karsten Hopp |
443337 |
ANIMATOR: Aaaaagh!
|
|
Karsten Hopp |
443337 |
VOICE OVER: The cartoon peril was no more ... The Quest for Holy Grail could
|
|
Karsten Hopp |
443337 |
continue.
|
|
Karsten Hopp |
443337 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
443337 |
|
|
Karsten Hopp |
443337 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
443337 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
443337 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
443337 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|