home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.0 / 7.0.107 < prev    next >
Encoding:
Internet Message Format  |  2006-09-13  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.0.107
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.0.107
  11. Problem:    Incremental search doesn't redraw the text tabline. (Ilya Bobir)
  12.         Also happens in other situations with one window in a tab page.
  13. Solution:   Redraw the tabline after clearing the screen.
  14. Files:        src/screen.c
  15.  
  16.  
  17. *** ../vim-7.0.106/src/screen.c    Tue Aug 29 17:28:56 2006
  18. --- src/screen.c    Thu Sep 14 21:00:32 2006
  19. ***************
  20. *** 1228,1234 ****
  21. --- 1228,1241 ----
  22.       {
  23.           mid_end = wp->w_height;
  24.           if (lastwin == firstwin)
  25. +         {
  26.           screenclear();
  27. + #ifdef FEAT_WINDOWS
  28. +         /* The screen was cleared, redraw the tab pages line. */
  29. +         if (redraw_tabline)
  30. +             draw_tabline();
  31. + #endif
  32. +         }
  33.       }
  34.       }
  35.       else
  36. *** ../vim-7.0.106/src/version.c    Thu Sep 14 13:35:17 2006
  37. --- src/version.c    Thu Sep 14 21:03:40 2006
  38. ***************
  39. *** 668,669 ****
  40. --- 668,671 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     107,
  44.   /**/
  45.  
  46. -- 
  47. VOICE OVER: As the horrendous Black Beast lunged forward, escape for Arthur
  48.             and his knights seemed hopeless,  when, suddenly ... the animator
  49.             suffered a fatal heart attack.
  50. ANIMATOR:   Aaaaagh!
  51. VOICE OVER: The cartoon peril was no more ... The Quest for Holy Grail could
  52.             continue.
  53.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  57. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  58.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  59.