summaryrefslogtreecommitdiffstats
path: root/src/if_perl.xs
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-06-26 17:16:51 +0200
committerBram Moolenaar <Bram@vim.org>2016-06-26 17:16:51 +0200
commit7b61bf187a318cb710be40da9ce4c29972324a71 (patch)
treeedde0d7884363bd8356187e5664cd58060351e86 /src/if_perl.xs
parent5d2ca0402954ff79b73d9c86cc16c8a6454b75a7 (diff)
patch 7.4.1957v7.4.1957
Problem: Perl interface has obsolete workaround. Solution: Remove the workaround added by 7.3.623. (Ken Takata)
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r--src/if_perl.xs16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs
index 89aa2db124..62b0e00744 100644
--- a/src/if_perl.xs
+++ b/src/if_perl.xs
@@ -135,14 +135,6 @@
# 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;