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.2.425 < prev    next >
Encoding:
Internet Message Format  |  2004-03-31  |  2.0 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.425
  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.2.425
  11. Problem:    Vertical split and command line window: can only drag status line
  12.         above the cmdline window on the righthand side, not lefthand side.
  13. Solution:   Check the status line row instead of the window pointer.
  14. Files:        src/ui.c
  15.  
  16.  
  17. *** ../vim-6.2.424/src/ui.c    Sat Mar  6 21:10:59 2004
  18. --- src/ui.c    Thu Apr  1 14:44:02 2004
  19. ***************
  20. *** 2356,2364 ****
  21.       if (cmdwin_type != 0 && wp != curwin)
  22.       {
  23.           /* A click outside the command-line window: Use modeless
  24. !          * selection if possible.  Allow dragging the status line of the
  25. !          * window just above the command-line window. */
  26. !         if (wp != curwin->w_prev)
  27.           {
  28.           on_status_line = 0;
  29.           dragwin = NULL;
  30. --- 2359,2368 ----
  31.       if (cmdwin_type != 0 && wp != curwin)
  32.       {
  33.           /* A click outside the command-line window: Use modeless
  34. !          * selection if possible.  Allow dragging the status line of
  35. !          * windows just above the command-line window. */
  36. !         if (wp->w_winrow + wp->w_height
  37. !                != curwin->w_prev->w_winrow + curwin->w_prev->w_height)
  38.           {
  39.           on_status_line = 0;
  40.           dragwin = NULL;
  41. *** ../vim-6.2.424/src/version.c    Thu Apr  1 14:19:33 2004
  42. --- src/version.c    Thu Apr  1 14:47:57 2004
  43. ***************
  44. *** 639,640 ****
  45. --- 639,642 ----
  46.   {   /* Add new patch number below this line */
  47. + /**/
  48. +     425,
  49.   /**/
  50.  
  51. -- 
  52. hundred-and-one symptoms of being an internet addict:
  53. 224. You set up your own Web page. You set up a Web page for each
  54.      of your kids... and your pets.
  55.  
  56.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  57. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  58. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  59.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  60.