Subject: | Minor issue with sub _abs_path |
A very minor issue is that if the cwd has a newline character in it, its
value isn't reported correctly by $File::chdir::CWD.
sub _abs_path needs the line
my($cwd) = Cwd::abs_path =~ /(.*)/;
changing to
my($cwd) = Cwd::abs_path =~ /(.*)/s;
David