Subject: | Newline bug? (patch) |
"1\n" is being dumped as 1.
% perl -MData::Dump -e'dd "1\n"'
1
% perl -I. -MData::Dump -e'dd "1\n"'
"1\n"
I had a patch but it was on my laptop, sorry. But anyway it's just a
couple of characters, something like changing $ to \z in a regex.