Skip Menu |

This queue is for tickets about the Module-Dependency CPAN distribution.

Report information
The Basics
Id: 6994
Status: resolved
Priority: 0/
Queue: Module-Dependency

People
Owner: Nobody in particular
Requestors: yanick [...] babyl.dyndns.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Indexer fooled by =cut
Around line 140 of M::D::Indexer, you have if ($in_pod) { $in_pod = 0 if (/^=cut\s*$/); next; } which will be fooled by code of the form =pod Blah =cut "and now we return to our regular program" use Foo; This can be fixed by replacing the regular expression by /^=cut\s?/ (and not /^=cut/, which would allow spurious matches like '=cutting edge')
Fixed in 1.83, along with many other issues.