|
Karsten Hopp |
55aa2f |
To: vim-dev@vim.org
|
|
Karsten Hopp |
55aa2f |
Subject: Patch 7.0.059
|
|
Karsten Hopp |
55aa2f |
Fcc: outbox
|
|
Karsten Hopp |
55aa2f |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
55aa2f |
Mime-Version: 1.0
|
|
Karsten Hopp |
55aa2f |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
55aa2f |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
55aa2f |
------------
|
|
Karsten Hopp |
55aa2f |
|
|
Karsten Hopp |
55aa2f |
Patch 7.0.059
|
|
Karsten Hopp |
55aa2f |
Problem: The Perl interface doesn't compile with ActiveState Perl 5.8.8.
|
|
Karsten Hopp |
55aa2f |
Solution: Remove the __attribute__() items. (Edward L. Fox)
|
|
Karsten Hopp |
55aa2f |
Files: src/if_perl.xs
|
|
Karsten Hopp |
55aa2f |
|
|
Karsten Hopp |
55aa2f |
|
|
Karsten Hopp |
55aa2f |
*** ../vim-7.0.058/src/if_perl.xs Fri Aug 11 22:56:44 2006
|
|
Karsten Hopp |
55aa2f |
--- src/if_perl.xs Wed Aug 16 14:45:15 2006
|
|
Karsten Hopp |
55aa2f |
***************
|
|
Karsten Hopp |
55aa2f |
*** 155,162 ****
|
|
Karsten Hopp |
55aa2f |
static int (*perl_run)(PerlInterpreter*);
|
|
Karsten Hopp |
55aa2f |
static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
|
|
Karsten Hopp |
55aa2f |
static void* (*Perl_get_context)(void);
|
|
Karsten Hopp |
55aa2f |
! static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__((noreturn));
|
|
Karsten Hopp |
55aa2f |
! static void (*Perl_croak_nocontext)(const char*, ...) __attribute__((noreturn));
|
|
Karsten Hopp |
55aa2f |
static I32 (*Perl_dowantarray)(pTHX);
|
|
Karsten Hopp |
55aa2f |
static void (*Perl_free_tmps)(pTHX);
|
|
Karsten Hopp |
55aa2f |
static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
|
|
Karsten Hopp |
55aa2f |
--- 155,162 ----
|
|
Karsten Hopp |
55aa2f |
static int (*perl_run)(PerlInterpreter*);
|
|
Karsten Hopp |
55aa2f |
static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
|
|
Karsten Hopp |
55aa2f |
static void* (*Perl_get_context)(void);
|
|
Karsten Hopp |
55aa2f |
! static void (*Perl_croak)(pTHX_ const char*, ...);
|
|
Karsten Hopp |
55aa2f |
! static void (*Perl_croak_nocontext)(const char*, ...);
|
|
Karsten Hopp |
55aa2f |
static I32 (*Perl_dowantarray)(pTHX);
|
|
Karsten Hopp |
55aa2f |
static void (*Perl_free_tmps)(pTHX);
|
|
Karsten Hopp |
55aa2f |
static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
|
|
Karsten Hopp |
55aa2f |
*** ../vim-7.0.058/src/version.c Wed Aug 16 18:05:36 2006
|
|
Karsten Hopp |
55aa2f |
--- src/version.c Wed Aug 16 18:18:35 2006
|
|
Karsten Hopp |
55aa2f |
***************
|
|
Karsten Hopp |
55aa2f |
*** 668,669 ****
|
|
Karsten Hopp |
55aa2f |
--- 668,671 ----
|
|
Karsten Hopp |
55aa2f |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
55aa2f |
+ /**/
|
|
Karsten Hopp |
55aa2f |
+ 59,
|
|
Karsten Hopp |
55aa2f |
/**/
|
|
Karsten Hopp |
55aa2f |
|
|
Karsten Hopp |
55aa2f |
--
|
|
Karsten Hopp |
55aa2f |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
55aa2f |
163. You go outside for the fresh air (at -30 degrees) but open the
|
|
Karsten Hopp |
55aa2f |
window first to hear new mail arrive.
|
|
Karsten Hopp |
55aa2f |
|
|
Karsten Hopp |
55aa2f |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
55aa2f |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
55aa2f |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
55aa2f |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|