Re: [ID 20000730.003] utf8::length() bad
Simon Cozens [Tue, 1 Aug 2000 06:55:19 +0000 (06:55 +0000)]
Message-ID: <slrn8oct2n.19l.simon@justanother.perlhacker.org>

p4raw-id: //depot/perl@6593

lib/utf8.pm

index 17ec37b..35be28c 100644 (file)
@@ -13,7 +13,8 @@ sub unimport {
 
 sub AUTOLOAD {
     require "utf8_heavy.pl";
-    goto &$AUTOLOAD;
+    goto &$AUTOLOAD if defined &$AUTOLOAD;
+    Carp::croak("Undefined subroutine $AUTOLOAD called");
 }
 
 1;