Skip Menu |

This queue is for tickets about the Wx CPAN distribution.

Report information
The Basics
Id: 70362
Status: new
Priority: 0/
Queue: Wx

People
Owner: Nobody in particular
Requestors: dam [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.9901
Fixed in: (no value)



Subject: [patch] fake POD in build/Wx/XSP/Overload.pm
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.
Subject: fix-fake-pod.patch
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 <dmn@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( ... )