|
Karsten Hopp |
a5914e |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
a5914e |
Subject: Patch 7.3.667
|
|
Karsten Hopp |
a5914e |
Fcc: outbox
|
|
Karsten Hopp |
a5914e |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
a5914e |
Mime-Version: 1.0
|
|
Karsten Hopp |
a5914e |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
a5914e |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
a5914e |
------------
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
Patch 7.3.667
|
|
Karsten Hopp |
a5914e |
Problem: Unused variables in Perl interface.
|
|
Karsten Hopp |
a5914e |
Solution: Adjust #ifdefs.
|
|
Karsten Hopp |
a5914e |
Files: src/if_perl.xs
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
*** ../vim-7.3.666/src/if_perl.xs 2012-08-08 13:17:26.000000000 +0200
|
|
Karsten Hopp |
a5914e |
--- src/if_perl.xs 2012-09-21 12:39:29.000000000 +0200
|
|
Karsten Hopp |
a5914e |
***************
|
|
Karsten Hopp |
a5914e |
*** 315,320 ****
|
|
Karsten Hopp |
a5914e |
--- 315,323 ----
|
|
Karsten Hopp |
a5914e |
static void (*Perl_sv_free2)(pTHX_ SV*);
|
|
Karsten Hopp |
a5914e |
static void (*Perl_sys_init)(int* argc, char*** argv);
|
|
Karsten Hopp |
a5914e |
static void (*Perl_sys_term)(void);
|
|
Karsten Hopp |
a5914e |
+ static void (*Perl_call_list)(pTHX_ I32, AV*);
|
|
Karsten Hopp |
a5914e |
+ # if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
|
|
Karsten Hopp |
a5914e |
+ # else
|
|
Karsten Hopp |
a5914e |
static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
***************
|
|
Karsten Hopp |
a5914e |
*** 326,341 ****
|
|
Karsten Hopp |
a5914e |
static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
- static void (*Perl_call_list)(pTHX_ I32, AV*);
|
|
Karsten Hopp |
a5914e |
static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
#endif
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
- static void (*boot_DynaLoader)_((pTHX_ CV*));
|
|
Karsten Hopp |
a5914e |
static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
/*
|
|
Karsten Hopp |
a5914e |
* Table of name to function pointer of perl.
|
|
Karsten Hopp |
a5914e |
--- 329,347 ----
|
|
Karsten Hopp |
a5914e |
static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
+ # endif
|
|
Karsten Hopp |
a5914e |
#endif
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
+ #if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
|
|
Karsten Hopp |
a5914e |
+ #else
|
|
Karsten Hopp |
a5914e |
static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
|
|
Karsten Hopp |
a5914e |
static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
|
|
Karsten Hopp |
a5914e |
+ #endif
|
|
Karsten Hopp |
a5914e |
+ static void (*boot_DynaLoader)_((pTHX_ CV*));
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
/*
|
|
Karsten Hopp |
a5914e |
* Table of name to function pointer of perl.
|
|
Karsten Hopp |
a5914e |
*** ../vim-7.3.666/src/version.c 2012-09-18 22:00:02.000000000 +0200
|
|
Karsten Hopp |
a5914e |
--- src/version.c 2012-09-21 12:40:57.000000000 +0200
|
|
Karsten Hopp |
a5914e |
***************
|
|
Karsten Hopp |
a5914e |
*** 721,722 ****
|
|
Karsten Hopp |
a5914e |
--- 721,724 ----
|
|
Karsten Hopp |
a5914e |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
a5914e |
+ /**/
|
|
Karsten Hopp |
a5914e |
+ 667,
|
|
Karsten Hopp |
a5914e |
/**/
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
--
|
|
Karsten Hopp |
a5914e |
Two cows are standing together in a field. One asks the other:
|
|
Karsten Hopp |
a5914e |
"So what do you think about this Mad Cow Disease?"
|
|
Karsten Hopp |
a5914e |
The other replies: "That doesn't concern me. I'm a helicopter."
|
|
Karsten Hopp |
a5914e |
|
|
Karsten Hopp |
a5914e |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
a5914e |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
a5914e |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
a5914e |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|