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.407 < prev    next >
Encoding:
Internet Message Format  |  2003-03-15  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.407
  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.407
  11. Problem:    ":set scrollbind | help" scrollbinds the help window. (Andrew
  12.         Pimlott)
  13. Solution:   Reset 'scrollbind' when opening a help window.
  14. Files:        src/ex_cmds.c
  15.  
  16.  
  17. *** ../vim61.406/src/ex_cmds.c    Sat Mar 15 16:36:06 2003
  18. --- src/ex_cmds.c    Sun Mar 16 21:26:00 2003
  19. ***************
  20. *** 2776,2781 ****
  21. --- 2776,2784 ----
  22.       curbuf->b_p_ma = FALSE;
  23.       curbuf->b_p_bin = FALSE;    /* reset 'bin' before reading file */
  24.       curwin->w_p_nu = 0;        /* no line numbers */
  25. + #ifdef FEAT_SCROLLBIND
  26. +     curwin->w_p_scb = FALSE;    /* no scroll binding */
  27. + #endif
  28.   #ifdef FEAT_RIGHTLEFT
  29.       curwin->w_p_rl = 0;        /* help window is left-to-right */
  30.   #endif
  31. *** ../vim61.406/src/version.c    Sat Mar 15 22:05:44 2003
  32. --- src/version.c    Sun Mar 16 21:27:13 2003
  33. ***************
  34. *** 613,614 ****
  35. --- 613,616 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     407,
  39.   /**/
  40.  
  41. -- 
  42. From "know your smileys":
  43.  8<}}    Glasses, big nose, beard
  44.  
  45.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  46. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  47. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  48.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  49.