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.067 < prev    next >
Encoding:
Internet Message Format  |  2002-05-14  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.067
  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.067
  11. Problem:    ":set viminfo+=f0" is not working. (Benji Fisher)
  12. Solution:   Check the "f" flag instead of "'" in 'viminfo'.
  13. Files:        src/mark.c
  14.  
  15.  
  16. *** ../vim61.066/src/mark.c    Mon Feb 11 14:51:37 2002
  17. --- src/mark.c    Wed May 15 22:25:58 2002
  18. ***************
  19. *** 1067,1073 ****
  20.       buf_T    *buf;
  21.       xfmark_T    *fm;
  22.   
  23. !     if (get_viminfo_parameter('\'') == 0)
  24.       return;
  25.   
  26.       fprintf(fp, _("\n# File marks:\n"));
  27. --- 1063,1069 ----
  28.       buf_T    *buf;
  29.       xfmark_T    *fm;
  30.   
  31. !     if (get_viminfo_parameter('f') == 0)
  32.       return;
  33.   
  34.       fprintf(fp, _("\n# File marks:\n"));
  35. *** ../vim61.066/src/version.c    Wed May 15 22:00:04 2002
  36. --- src/version.c    Wed May 15 22:29:28 2002
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     67,
  43.   /**/
  44.  
  45. -- 
  46. hundred-and-one symptoms of being an internet addict:
  47. 22. You've already visited all the links at Yahoo and you're halfway through
  48.     Lycos.
  49.  
  50.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  51. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  52. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  53.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  54.