in reply to Handing back $SIG{__DIE__} under -w causes a warning?
Basically you aren't allowed to assign undef values to %SIG slots. Instead you need something like:perl -we '$SIG{__DIE__} = undef'
Although arguably Perl ought to be smart enough to DWIM. I might fix this.$SIG{__DIE__} = defined $origHandler ? origHandler : 'DEFAULT'
Dave.
|
|---|