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.123 < prev    next >
Encoding:
Internet Message Format  |  2002-01-08  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.123
  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.123 (depends on patch 6.0.119)
  11. Problem:    Win16: Compilation problems.
  12. Solution:   Move "&&" to other lines. (Vince Negri)
  13. Files:        src/eval.c
  14.  
  15.  
  16. *** ../vim60.122/src/eval.c    Mon Jan  7 14:08:11 2002
  17. --- src/eval.c    Wed Jan  9 16:18:38 2002
  18. ***************
  19. *** 3418,3430 ****
  20.   #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
  21.       if (
  22.   # ifdef WIN3264
  23. !         mch_writable(p)
  24.   # else
  25.   # if defined(UNIX) || defined(VMS)
  26. !         (perm & 0222)
  27.   #  endif
  28.   # endif
  29. !         && mch_access((char *)p, W_OK) == 0
  30.          )
  31.   #endif
  32.       {
  33. --- 3418,3430 ----
  34.   #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
  35.       if (
  36.   # ifdef WIN3264
  37. !         mch_writable(p) &&
  38.   # else
  39.   # if defined(UNIX) || defined(VMS)
  40. !         (perm & 0222) &&
  41.   #  endif
  42.   # endif
  43. !         mch_access((char *)p, W_OK) == 0
  44.          )
  45.   #endif
  46.       {
  47. *** ../vim60.122/src/version.c    Wed Jan  9 16:23:13 2002
  48. --- src/version.c    Wed Jan  9 16:23:31 2002
  49. ***************
  50. *** 608,609 ****
  51. --- 608,611 ----
  52.   {   /* Add new patch number below this line */
  53. + /**/
  54. +     123,
  55.   /**/
  56.  
  57. -- 
  58. "Software is like sex... it's better when it's free."
  59.         -- Linus Torvalds, initiator of the free Linux OS
  60. Makes me wonder what FSF stands for...?
  61.  
  62.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  63. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  64.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  65.