in reply to AUTOLOAD inheritance

DynaLoader uses AUTOLOAD, so I guess the error is in code you didn't show...

tom@margo perl5 $ find . -name Dyna\*.pm ./5.8.3/i686-linux/DynaLoader.pm tom@margo perl5 $ head -n 25 ./5.8.3/i686-linux/DynaLoader.pm | tail - +n 15 # Tim.Bunce@ig.co.uk, August 1994 use vars qw($VERSION *AUTOLOAD); $VERSION = '1.04'; # avoid typo warning require AutoLoader; *AUTOLOAD = \&AutoLoader::AUTOLOAD; use Config;

regards,
tomte


Hlade's Law:

If you have a difficult task, give it to a lazy person --
they will find an easier way to do it.