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.212 < prev    next >
Encoding:
Internet Message Format  |  2009-06-23  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.2.212 (extra)
  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.212 (extra)
  11. Problem:    Warnings for redefining SIG macros.
  12. Solution:   Don't define them if already defined. (Bjorn Winckler)
  13. Files:        src/os_mac.h
  14.  
  15.  
  16. *** ../vim-7.2.211/src/os_mac.h    2008-06-24 22:27:34.000000000 +0200
  17. --- src/os_mac.h    2009-06-19 21:21:57.000000000 +0200
  18. ***************
  19. *** 268,276 ****
  20.    */
  21.   
  22.   #ifdef MACOS_X_UNIX
  23. ! # define SIGPROTOARG    (int)
  24. ! # define SIGDEFARG(s)    (s) int s;
  25. ! # define SIGDUMMYARG    0
  26.   # undef  HAVE_AVAIL_MEM
  27.   # ifndef HAVE_CONFIG_H
  28.   #  define RETSIGTYPE void
  29. --- 268,282 ----
  30.    */
  31.   
  32.   #ifdef MACOS_X_UNIX
  33. ! # ifndef SIGPROTOARG
  34. ! #  define SIGPROTOARG    (int)
  35. ! # endif
  36. ! # ifndef SIGDEFARG
  37. ! #  define SIGDEFARG(s)    (s) int s UNUSED;
  38. ! # endif
  39. ! # ifndef SIGDUMMYARG
  40. ! #  define SIGDUMMYARG    0
  41. ! # endif
  42.   # undef  HAVE_AVAIL_MEM
  43.   # ifndef HAVE_CONFIG_H
  44.   #  define RETSIGTYPE void
  45. *** ../vim-7.2.211/src/version.c    2009-06-24 16:25:23.000000000 +0200
  46. --- src/version.c    2009-06-24 16:40:18.000000000 +0200
  47. ***************
  48. *** 678,679 ****
  49. --- 678,681 ----
  50.   {   /* Add new patch number below this line */
  51. + /**/
  52. +     212,
  53.   /**/
  54.  
  55. -- 
  56. hundred-and-one symptoms of being an internet addict:
  57. 37. You start looking for hot HTML addresses in public restrooms.
  58.  
  59.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  60. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  61. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  62.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  63.