in reply to Re: Help with error msg "Useless use..."
in thread Help with error msg "Useless use..."

Good catch.

Rather minor correction: The original gets parsed as:

( my $pms = join("\n", @foundfiles) ), "\n";
not as
my $pms = ( join("\n", @foundfiles), "\n" );
so it is the "\n" that gets thrown away.

                - tye