diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-09 11:04:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-09 11:04:23 +0000 |
commit | 49e9cc5f6815d33ebfa1aabf8837d4a6b16c3bea (patch) | |
tree | 11be48567800d064ddf08bb4c98905c4287ff9d3 /scope.c | |
parent | 3cc8d5892ed2db9918b7fc38862edb74459a28d0 (diff) | |
download | perl-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |