On Thu, 23 Mar 2000 11:27:40 +0900, scozens@pwj.co.jp wrote: >@@ -173,7 +174,7 @@ > =cut > > @ISA = qw(Exporter); >-@EXPORT = qw(find finddepth); >+@EXPORT = qw(find finddepth $dir $name $fullname); Don't add anything to @EXPORT of an existing module, ever! Use @EXPORT_OK if you have to, but changing @EXPORT is not backwards compatible. -Jan