summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-03-09 11:04:23 +0000
committerNicholas Clark <nick@ccl4.org>2006-03-09 11:04:23 +0000
commit49e9cc5f6815d33ebfa1aabf8837d4a6b16c3bea (patch)
tree11be48567800d064ddf08bb4c98905c4287ff9d3 /scope.c
parent3cc8d5892ed2db9918b7fc38862edb74459a28d0 (diff)
downloadperl-49e9cc5f6815d33ebfa1aabf8837d4a6b16c3bea.tar.gz
Note the cause of another MAD test failure - an explicit abort trap
for saving PL_formfeed is being hit. p4raw-id: //depot/perl@27431
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scope.c b/scope.c
index 2c61424240..ff063d22a0 100644
--- a/scope.c
+++ b/scope.c
@@ -166,6 +166,7 @@ S_save_scalar_at(pTHX_ SV **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