From: Peter Scott Date: Thu, 17 Oct 2002 19:54:56 +0000 (-0700) Subject: AutoLoader gives wrong message X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e0fa987931295419ee9237d08014c4c5381f1cf8;p=p5sagit%2Fp5-mst-13.2.git AutoLoader gives wrong message Message-id: <4.3.2.7.2.20021017192450.00b3dce0@shell2.webquarry.com> p4raw-id: //depot/perl@18047 --- diff --git a/lib/AutoLoader.pm b/lib/AutoLoader.pm index 3afe4af..4352d8b 100644 --- a/lib/AutoLoader.pm +++ b/lib/AutoLoader.pm @@ -92,23 +92,24 @@ AUTOLOAD { eval { local $SIG{__DIE__}; require $filename }; if ($@) { if (substr($sub,-9) eq '::DESTROY') { - no strict 'refs'; + no strict 'refs'; *$sub = sub {}; - } else { + $@ = undef; + } elsif ($@ =~ /^Can't locate/) { # The load might just have failed because the filename was too # long for some old SVR3 systems which treat long names as errors. - # If we can succesfully truncate a long name then it's worth a go. + # If we can successfully truncate a long name then it's worth a go. # There is a slight risk that we could pick up the wrong file here # but autosplit should have warned about that when splitting. if ($filename =~ s/(\w{12,})\.al$/substr($1,0,11).".al"/e){ eval { local $SIG{__DIE__}; require $filename }; } - if ($@){ - $@ =~ s/ at .*\n//; - my $error = $@; - require Carp; - Carp::croak($error); - } + } + if ($@){ + $@ =~ s/ at .*\n//; + my $error = $@; + require Carp; + Carp::croak($error); } } $@ = $save; @@ -124,9 +125,9 @@ sub import { # if ($pkg eq 'AutoLoader') { - no strict 'refs'; - *{ $callpkg . '::AUTOLOAD' } = \&AUTOLOAD - if @_ and $_[0] =~ /^&?AUTOLOAD$/; + no strict 'refs'; + *{ $callpkg . '::AUTOLOAD' } = \&AUTOLOAD + if @_ and $_[0] =~ /^&?AUTOLOAD$/; } #