in reply to pod-error in perldocs

For the same reason, perldoc -v %SIG also produces bad POD.

The bugs are still present in blead.

Untested fix for Pod/Perldoc.pm:

sub search_perlvar { . . . elsif (/^=back/) { --$inlist; } . . . } #..................................................................... +..... sub search_perlfunc { . . . elsif (/^=back/) { --$inlist; } . . . }
should be
sub search_perlvar { . . . elsif (/^=back/) { last if $found && !$inheader && !$inlist; --$inlist; } . . . } #..................................................................... +..... sub search_perlfunc { . . . elsif (/^=back/) { last if $found > 1 and not $inlist; --$inlist; } . . . }

Want the honours of reporting it?

Replies are listed 'Best First'.
Re^2: pod-error in perldocs
by LanX (Saint) on Sep 23, 2009 at 16:17 UTC
    Want the honours of reporting it?

    Do we get a cake or a beer for free :-)

    seriously, let's share the honours (however they are realized) me for reporting, and you two for fixing.

    Is there a bugtracker (especially for perldoc) errors?

    Cheers Rolf

      It's a core module, so you can use perlbug
        Done!

        I added special thanx to you both and the wish to share all possible honours! ;-)

        Cheers Rolf