]> granicus.if.org Git - vim/commitdiff
updated for version 7.1-110 v7.1.110
authorBram Moolenaar <Bram@vim.org>
Sat, 15 Sep 2007 12:49:35 +0000 (12:49 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 15 Sep 2007 12:49:35 +0000 (12:49 +0000)
src/if_perl.xs
src/version.c

index ca8f1a83d1f428204361dc5df823a7b1b2c4bb84..2e27fed24a4dd37e30ffcdece35e702fb9f96f62 100644 (file)
  * The changes include addition of two symbols (Perl_sv_2iv_flags,
  * 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)
-# define PERL589_OR_LATER
-#endif
-#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 9)
-# define PERL589_OR_LATER
+#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
+# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
+#  define PERL589_OR_LATER
+# endif
 #endif
 #if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
 # define PERL589_OR_LATER
index 300bd3eef3850fb43d2f2e6a45213da0f6eee45a..d4757007ea11f988748b025298a45c27ca57ad8e 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    110,
 /**/
     109,
 /**/