in reply to •Re: Re: Horrible "undef local $foo;" (was: Re: Signals and 'IGNORE')
in thread Signals and 'IGNORE'
And# undef to restore SIGINT to normal behavior undef local $SIG{INT};
Read the same, the cake is in the comment that reminds whoever is looking at the code what is trying to be accomplished.# undef to restore SIGINT to normal behavior local $SIG{INT};
|
|---|