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.075 < prev    next >
Encoding:
Internet Message Format  |  2002-05-16  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.075
  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.075 (depends on 6.1.072)
  11. Problem:    Can't compile fileio.c on MS-Windows.
  12. Solution:   Add a declaration for the "p" pointer. (Madoka Machitani)
  13. Files:        src/fileio.c
  14.  
  15.  
  16. *** ../vim61.074/src/fileio.c    Thu May 16 22:01:33 2002
  17. --- src/fileio.c    Fri May 17 10:18:34 2002
  18. ***************
  19. *** 5777,5782 ****
  20. --- 5777,5784 ----
  21.   forward_slash(fname)
  22.       char_u    *fname;
  23.   {
  24. +     char_u    *p;
  25.       for (p = fname; *p != NUL; ++p)
  26.   # ifdef  FEAT_MBYTE
  27.       /* The Big5 encoding can have '\' in the trail byte. */
  28. *** ../vim61.074/src/version.c    Thu May 16 22:15:58 2002
  29. --- src/version.c    Fri May 17 10:18:44 2002
  30. ***************
  31. *** 608,609 ****
  32. --- 608,611 ----
  33.   {   /* Add new patch number below this line */
  34. + /**/
  35. +     75,
  36.   /**/
  37.  
  38. -- 
  39. How To Keep A Healthy Level Of Insanity:
  40. 8. Don't use any punctuation marks.
  41.  
  42.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  43. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  44. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  45.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  46.