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 / 6.1.213 < prev    next >
Encoding:
Internet Message Format  |  2002-10-07  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.213
  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 6.1.213
  11. Problem:    Using CTRL-W H may cause a big gap to appear below the last
  12.         window. (Aric Blumer)
  13. Solution:   Don't set the window height when there is a vertical split.
  14.         (Yasuhiro Matsumoto)
  15. Files:        src/window.c
  16.  
  17.  
  18. *** ../vim61.212/src/window.c    Mon Sep 23 21:32:08 2002
  19. --- src/window.c    Tue Oct  8 19:59:58 2002
  20. ***************
  21. *** 1419,1425 ****
  22.   
  23.       /* Split a window on the right side and put the window there. */
  24.       (void)win_split_ins(size, flags, curwin, dir);
  25. !     win_setheight(height);
  26.   
  27.   #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
  28.       /* When 'guioptions' includes 'L' or 'R' may have to remove or add
  29. --- 1419,1426 ----
  30.   
  31.       /* Split a window on the right side and put the window there. */
  32.       (void)win_split_ins(size, flags, curwin, dir);
  33. !     if (!(flags & WSP_VERT))
  34. !     win_setheight(height);
  35.   
  36.   #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
  37.       /* When 'guioptions' includes 'L' or 'R' may have to remove or add
  38. *** ../vim61.212/src/version.c    Mon Oct  7 21:35:49 2002
  39. --- src/version.c    Tue Oct  8 20:04:43 2002
  40. ***************
  41. *** 608,609 ****
  42. --- 608,611 ----
  43.   {   /* Add new patch number below this line */
  44. + /**/
  45. +     213,
  46.   /**/
  47.  
  48. -- 
  49. hundred-and-one symptoms of being an internet addict:
  50. 160. You get in the elevator and double-click the button for the floor
  51.      you want.
  52.  
  53.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  54. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  55. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  56.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  57.