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.2.530 < prev    next >
Encoding:
Internet Message Format  |  2004-05-04  |  1.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.530
  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.2.530
  11. Problem:    Warning for missing prototype on the Amiga.
  12. Solution:   Include time.h
  13. Files:        src/version.c
  14.  
  15.  
  16. *** ../vim-6.2.529/src/version.c    Wed May  5 11:54:50 2004
  17. --- src/version.c    Wed May  5 11:56:11 2004
  18. ***************
  19. *** 10,13 ****
  20. --- 10,17 ----
  21.   #include "vim.h"
  22.   
  23. + #ifdef AMIGA
  24. + # include <time.h>    /* for time() */
  25. + #endif
  26.   /*
  27.    * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
  28. ***************
  29. *** 639,640 ****
  30. --- 642,645 ----
  31.   {   /* Add new patch number below this line */
  32. + /**/
  33. +     530,
  34.   /**/
  35.  
  36. -- 
  37. hundred-and-one symptoms of being an internet addict:
  38. 114. You are counting items, you go "0,1,2,3,4,5,6,7,8,9,A,B,C,D...".
  39.  
  40.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  41. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  42. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  43.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  44.