Message-ID: <slrn8oct2n.19l.simon@justanother.perlhacker.org>
p4raw-id: //depot/perl@6593
sub AUTOLOAD {
require "utf8_heavy.pl";
- goto &$AUTOLOAD;
+ goto &$AUTOLOAD if defined &$AUTOLOAD;
+ Carp::croak("Undefined subroutine $AUTOLOAD called");
}
1;