diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-03-16 08:41:02 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-03-16 08:41:02 +0000 |
commit | c1bd9b63a6f9fb1ff545c1522739c385d3c1902f (patch) | |
tree | 515086bcfa97e8ce1404fec90ee54f768ad5c333 /scope.c | |
parent | 42cd432e78efd1039af03fb10782bd0dba2e23ee (diff) | |
download | perl-c1bd9b63a6f9fb1ff545c1522739c385d3c1902f.tar.gz |
Remove the abort() trap, which Larry said was actually only ever
intended as a way to enter gdb by using local $^L
p4raw-id: //depot/perl@30603
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -165,12 +165,6 @@ S_save_scalar_at(pTHX_ SV **sptr) SV * const osv = *sptr; register SV * const sv = *sptr = newSV(0); -#ifdef PERL_MAD - /* FIXME for MAD - this is causing ext/Safe/t/safeops.t to abort. */ - if (PL_formfeed && sv == PL_formfeed) - abort(); -#endif - if (SvTYPE(osv) >= SVt_PVMG && SvMAGIC(osv) && SvTYPE(osv) != SVt_PVGV) { if (SvGMAGICAL(osv)) { const bool oldtainted = PL_tainted; |