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.0.156 < prev    next >
Encoding:
Internet Message Format  |  2002-01-28  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.156
  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.0.156
  11. Problem:    Starting Vim with the -b argument and two files, ":next" doesn't
  12.         set 'binary' in the second file, like Vim 5.7. (Norman Diamond)
  13. Solution:   Set the global value for 'binary'.
  14. Files:        src/option.c
  15.  
  16.  
  17. *** ../vim60.155/src/option.c    Tue Jan 15 14:34:37 2002
  18. --- src/option.c    Tue Jan 29 16:32:30 2002
  19. ***************
  20. *** 3883,3890 ****
  21.       {
  22.           p_tw = 0;
  23.           p_wm = 0;
  24. !         p_ml = 0;
  25. !         p_et = 0;
  26.       }
  27.       }
  28.       else if (oldval)        /* switched off */
  29. --- 3883,3891 ----
  30.       {
  31.           p_tw = 0;
  32.           p_wm = 0;
  33. !         p_ml = FALSE;
  34. !         p_et = FALSE;
  35. !         p_bin = TRUE;    /* needed when called for the "-b" argument */
  36.       }
  37.       }
  38.       else if (oldval)        /* switched off */
  39. *** ../vim60.155/src/version.c    Tue Jan 29 16:23:04 2002
  40. --- src/version.c    Tue Jan 29 16:34:31 2002
  41. ***************
  42. *** 608,609 ****
  43. --- 608,611 ----
  44.   {   /* Add new patch number below this line */
  45. + /**/
  46. +     156,
  47.   /**/
  48.  
  49. -- 
  50. From "know your smileys"
  51.  8<}}    Glasses, big nose, beard
  52.  
  53.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  54. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  55.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  56.