forked from aniani/vim
updated for version 7.1-110
This commit is contained in:
@@ -48,13 +48,15 @@
|
|||||||
* The changes include addition of two symbols (Perl_sv_2iv_flags,
|
* The changes include addition of two symbols (Perl_sv_2iv_flags,
|
||||||
* Perl_newXS_flags) not present in earlier releases.
|
* Perl_newXS_flags) not present in earlier releases.
|
||||||
*
|
*
|
||||||
* Jan Dubois suggested the following guarding scheme:
|
* Jan Dubois suggested the following guarding scheme.
|
||||||
|
*
|
||||||
|
* Active State defined ACTIVEPERL_VERSION as a string in versions before
|
||||||
|
* 5.8.8; and so the comparison to 822 below needs to be guarded.
|
||||||
*/
|
*/
|
||||||
#if (ACTIVEPERL_VERSION >= 822)
|
#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
|
||||||
# define PERL589_OR_LATER
|
# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
|
||||||
#endif
|
# define PERL589_OR_LATER
|
||||||
#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 9)
|
# endif
|
||||||
# define PERL589_OR_LATER
|
|
||||||
#endif
|
#endif
|
||||||
#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
|
#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
|
||||||
# define PERL589_OR_LATER
|
# define PERL589_OR_LATER
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
110,
|
||||||
/**/
|
/**/
|
||||||
109,
|
109,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user