in reply to Strange Win32::MsgBox behavior with PAR
If you add caller information, you can see
The PAR team would probably consider this an oversight (bug). This is the code which ultimately executes your program.$SIG{ __DIE__ } = sub { $b=join '|',caller(0);Win32::MsgBox ("Error : + @_ ($b)" , 0, $0 ) } ;
$ENV{PAR_0} = $filename; # for Pod::Usage { do 'main'; CORE::exit($1) if ($@ =~/^_TK_EXIT_\((\d+)\)/); die $@ if $@; exit; }
|
|---|