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.306 < prev    next >
Encoding:
Internet Message Format  |  2003-01-27  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.306
  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.306
  11. Problem:    The AIX VisualAge cc compiler doesn't define __STDC__.
  12. Solution:   Use __EXTENDED__ like __STDC__. (Jess Thrysoee)
  13. Files:        src/os_unix.h
  14.  
  15.  
  16. *** ../vim61.305/src/os_unix.h    Thu Apr 11 21:42:20 2002
  17. --- src/os_unix.h    Mon Jan 20 21:14:13 2003
  18. ***************
  19. *** 79,85 ****
  20.   #endif
  21.   
  22.   #ifndef __ARGS
  23. ! # if defined(__STDC__) || defined(__GNUC__)
  24.   #  define __ARGS(x) x
  25.   # else
  26.   #  define __ARGS(x) ()
  27. --- 79,87 ----
  28.   #endif
  29.   
  30.   #ifndef __ARGS
  31. !     /* The AIX VisualAge cc compiler defines __EXTENDED__ instead of __STDC__
  32. !      * because it includes pre-ansi features. */
  33. ! # if defined(__STDC__) || defined(__GNUC__) || defined(__EXTENDED__)
  34.   #  define __ARGS(x) x
  35.   # else
  36.   #  define __ARGS(x) ()
  37. *** ../vim61.305/src/version.c    Tue Jan 28 21:42:29 2003
  38. --- src/version.c    Tue Jan 28 21:46:07 2003
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     306,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 67. Your hard drive crashes. You haven't logged in for two hours.  You start
  50.     to twitch. You pick up the phone and manually dial your ISP's access
  51.     number. You try to hum to communicate with the modem.  You succeed.
  52.  
  53.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  54. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  55. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  56.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  57.