]> granicus.if.org Git - vim/commitdiff
patch 7.4.1957 v7.4.1957
authorBram Moolenaar <Bram@vim.org>
Sun, 26 Jun 2016 15:16:51 +0000 (17:16 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 26 Jun 2016 15:16:51 +0000 (17:16 +0200)
Problem:    Perl interface has obsolete workaround.
Solution:   Remove the workaround added by 7.3.623. (Ken Takata)

src/if_perl.xs
src/version.c

index 89aa2db124d71e3dd544331b83be49b6e9dfb88a..62b0e0074434ff507000dca50a42c27af48f3d89 100644 (file)
 # define EXTERN_C
 #endif
 
-#if (PERL_REVISION == 5) && (PERL_VERSION >= 14) && defined(_MSC_VER)
-/* Using PL_errgv to get the error message after perl_eval_sv() causes a crash
- * with MSVC and Perl version 5.14. */
-#   define CHECK_EVAL_ERR(len) SvPV(perl_get_sv("@", GV_ADD), (len));
-#else
-#   define CHECK_EVAL_ERR(len) SvPV(GvSV(PL_errgv), (len));
-#endif
-
 /* Compatibility hacks over */
 
 static PerlInterpreter *perl_interp = NULL;
@@ -985,7 +977,7 @@ ex_perl(exarg_T *eap)
 
     SvREFCNT_dec(sv);
 
-    err = CHECK_EVAL_ERR(length);
+    err = SvPV(GvSV(PL_errgv), length);
 
     FREETMPS;
     LEAVE;
@@ -1274,7 +1266,7 @@ do_perleval(char_u *str, typval_T *rettv)
        if (sv) {
            perl_to_vim(sv, rettv);
            ref_map_free();
-           err = CHECK_EVAL_ERR(err_len);
+           err = SvPV(GvSV(PL_errgv), err_len);
        }
        PUTBACK;
        FREETMPS;
@@ -1318,7 +1310,7 @@ ex_perldo(exarg_T *eap)
     sv_catpvn(sv, "}", 1);
     perl_eval_sv(sv, G_DISCARD | G_NOARGS);
     SvREFCNT_dec(sv);
-    str = CHECK_EVAL_ERR(length);
+    str = SvPV(GvSV(PL_errgv), length);
     if (length)
        goto err;
 
@@ -1332,7 +1324,7 @@ ex_perldo(exarg_T *eap)
        sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
        PUSHMARK(sp);
        perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
-       str = CHECK_EVAL_ERR(length);
+       str = SvPV(GvSV(PL_errgv), length);
        if (length)
            break;
        SPAGAIN;
index 5e224e81b16377274b8956c638d8570311219af0..2827f24ea6ba0190706de5cdcea9a7c6ac18ed61 100644 (file)
@@ -753,6 +753,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1957,
 /**/
     1956,
 /**/