On Mon, 19 Nov 2001, Tels wrote:
> > sub canonpath {
> > return File::Spec->canonpath($_[1]);
> > }
>
> I'd written return File::Spec->canonpath(@_); just in case ;)That won't work quite right, you'd either need to do: return File::Spec->canonpath(@_[1..$#_]); or maybe: shift; return File::Spec->canonpath(@_); - D <[EMAIL PROTECTED]>
