Subject: | <line> and <loc> do not work |
The POD says that <line> and <loc>
are synonyms for <loc> <here> and <where>.
They are not.
Obvious patch:
$pref =~ s/<(?:here|place|where)>/"$file", line $line/g;
becomes:
$pref =~ s/<(?:here|place|where|line|loc)>/"$file", line $line/g;
or change the documentation.