To: vim-dev@vim.org Subject: Patch 6.1.306 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.1.306 Problem: The AIX VisualAge cc compiler doesn't define __STDC__. Solution: Use __EXTENDED__ like __STDC__. (Jess Thrysoee) Files: src/os_unix.h *** ../vim61.305/src/os_unix.h Thu Apr 11 21:42:20 2002 --- src/os_unix.h Mon Jan 20 21:14:13 2003 *************** *** 79,85 **** #endif #ifndef __ARGS ! # if defined(__STDC__) || defined(__GNUC__) # define __ARGS(x) x # else # define __ARGS(x) () --- 79,87 ---- #endif #ifndef __ARGS ! /* The AIX VisualAge cc compiler defines __EXTENDED__ instead of __STDC__ ! * because it includes pre-ansi features. */ ! # if defined(__STDC__) || defined(__GNUC__) || defined(__EXTENDED__) # define __ARGS(x) x # else # define __ARGS(x) () *** ../vim61.305/src/version.c Tue Jan 28 21:42:29 2003 --- src/version.c Tue Jan 28 21:46:07 2003 *************** *** 608,609 **** --- 608,611 ---- { /* Add new patch number below this line */ + /**/ + 306, /**/ -- hundred-and-one symptoms of being an internet addict: 67. Your hard drive crashes. You haven't logged in for two hours. You start to twitch. You pick up the phone and manually dial your ISP's access number. You try to hum to communicate with the modem. You succeed. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\ \\\ Project leader for A-A-P -- http://www.A-A-P.org /// \\\ Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///