Subject: | _filtered_inc: Lose any trailing backslashes in the Win32 paths |
I just stumbled over this line in _filtered_inc() in Test::Harness:
# Lose any trailing backslashes in the Win32 paths
s/[\\\/+]$// foreach @inc;
Shouldn't this be
s/[\\\/]+$// foreach @inc;
instead? Or is the "+" character special at the end of Win32 paths?
Regards,
Slaven