Subject: | Misuse of \E in Text.pm |
In this subroutine (around line 70), \E is used instead of \Q:
sub end_L {
if (my $link = delete $_[0]{'Link'}) {
# Append the URL to the output unless it's already present.
$_[0]{'Thispara'} .= " <$link->{to}>"
unless $_[0]{'Thispara'} =~ /\b\E$link->{to}/;
}
}
\E has no effect by itself.