On Nov 24, Mark-Jason Dominus said: >Would it be a bad idea to have Exporter.pm raise a fatal compile-time >error if a module exported an undefined subroutine? That would break exporting functions that get AUTOLOADed. package Foo; AUTOLOAD { print "$AUTOLOAD(@_)\n" } package main; *func = \&Foo::fake; func(); __END__ Foo::fake() -- Jeff "japhy" Pinyan japhy@pobox.com http://www.pobox.com/~japhy/ CPAN - #1 Perl Resource (my id: PINYAN) http://search.cpan.org/ PerlMonks - An Online Perl Community http://www.perlmonks.com/ The Perl Archive - Articles, Forums, etc. http://www.perlarchive.com/