Fri Aug 19 03:37:26 2011: Request 70362 was acted upon. Transaction: Ticket created by DAM Queue: Wx Subject: [patch] fake POD in build/Wx/XSP/Overload.pm Broken in: 0.9901 Severity: Unimportant Owner: Nobody Requestors: d...@cpan.org Status: new Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=70362 >
There is a fragment of code in build/Wx/XSP/Overload.pm that is surrounded by =pod/=end as a way to comment it out. Since this is in =pod, the code ends up in a manual page for Wx::XSP::Overload, which is not useful/needed. The patch attached changed the wrap to use =for comment/=end, which avoids creating the bogus manual page. Thanks for considering.
Description: fix =pod usege where '=for comment' is meant Having it as POD makes it into man page, which is incomplete and useless Author: Damyan Ivanov <d...@debian.org> --- a/build/Wx/XSP/Overload.pm +++ b/build/Wx/XSP/Overload.pm @@ -52,7 +52,7 @@ sub post_process { } } -=pod +=for comment void wxCaret::Move( ... )