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 / 7.2 / 7.2.311 < prev    next >
Encoding:
Internet Message Format  |  2009-12-01  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.2.311
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.2.311
  11. Problem:    Can't compile with FreeMiNT.
  12. Solution:   Change #ifdef for limits.h. (Alan Hourihane)
  13. Files:        src/fileio.c
  14.  
  15.  
  16. *** ../vim-7.2.310/src/fileio.c    2009-11-18 20:12:15.000000000 +0100
  17. --- src/fileio.c    2009-12-02 13:30:07.000000000 +0100
  18. ***************
  19. *** 21,27 ****
  20.   
  21.   #include "vim.h"
  22.   
  23. ! #ifdef __TANDEM
  24.   # include <limits.h>        /* for SSIZE_MAX */
  25.   #endif
  26.   
  27. --- 21,27 ----
  28.   
  29.   #include "vim.h"
  30.   
  31. ! #if defined(__TANDEM) || defined(__MINT__)
  32.   # include <limits.h>        /* for SSIZE_MAX */
  33.   #endif
  34.   
  35. *** ../vim-7.2.310/src/version.c    2009-12-02 12:08:57.000000000 +0100
  36. --- src/version.c    2009-12-02 13:31:46.000000000 +0100
  37. ***************
  38. *** 683,684 ****
  39. --- 683,686 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     311,
  43.   /**/
  44.  
  45. -- 
  46. hundred-and-one symptoms of being an internet addict:
  47. 3. Your bookmark takes 15 minutes to scroll from top to bottom.
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  52.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  53.