Jesse Luehrs <doy@tozt.net> writes: > I don't see why using a \N{} sequence should have any impact on what > functions are available to use in my code. Compare: $ perl -wE 'binmode STDOUT; warn File::Spec->catfile("foo","bar")' Can't locate object method "catfile" via package "File::Spec" (perhaps you forgot to load "File::Spec"?) at -e line 1. with: $ perl -wE 'STDOUT->binmode; warn File::Spec->catfile("foo","bar")' foo/bar at -e line 1. -- JohanThread Previous | Thread Next