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.139 < prev    next >
Encoding:
Internet Message Format  |  2002-07-20  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.139
  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.139
  11. Problem:    Cygwin: PATH_MAX is not defined.
  12. Solution:   Include limits.h. (Dan Sharp)
  13. Files:        src/main.c
  14.  
  15.  
  16. *** ../vim61.138/src/main.c    Sat Jul 13 15:34:13 2002
  17. --- src/main.c    Sat Jul 13 15:29:31 2002
  18. ***************
  19. *** 24,29 ****
  20. --- 24,30 ----
  21.   
  22.   #ifdef __CYGWIN__
  23.   # include <sys/cygwin.h>
  24. + # include <limits.h>
  25.   #endif
  26.   
  27.   #if defined(UNIX) || defined(VMS)
  28. *** ../vim61.138/src/version.c    Sun Jul 21 21:24:26 2002
  29. --- src/version.c    Sun Jul 21 21:28:55 2002
  30. ***************
  31. *** 608,609 ****
  32. --- 608,611 ----
  33.   {   /* Add new patch number below this line */
  34. + /**/
  35. +     139,
  36.   /**/
  37.  
  38. -- 
  39. hundred-and-one symptoms of being an internet addict:
  40. 20. When looking at a pageful of someone else's links, you notice all of them
  41.     are already highlighted in purple.
  42.  
  43.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  44. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  45. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  46.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  47.