CC: | APOCAL [...] cpan.org |
Subject: | Found \E without a preceding case modification or quoted section at... |
Since bleadperl v5.15.6-373-g52ed07f there is a new warning when a \E
appears without a corresponding opener.
Pod::Simple::Text has such a regex in line 74, it looks like this:
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}/;
}
The warning is triggered for example by the test suite of
APOCAL/Test-Pod-No404s-0.01.tar.gz:
http://www.cpantesters.org/cpan/report/34e93b4c-383f-11e1-8347-be449aeef8c6
HTH && Thanks && Regards,