[EMAIL PROTECTED] (via RT) schrieb:
# New Ticket Created by [EMAIL PROTECTED]
# Please include the string: [perl #45703]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=45703 >
As a start of contributing to parrot, I cleaned a file of the headerizer warnings as noted in RT 45593, because this is my first patch i only changed one file (to keep it simple).
Hi,
welcome to the vibrant world of Parrot.
I have a question regarding your patch. Are you sure about
@@ -87,7 +89,7 @@
PARROT_API
void
-imc_cleanup(PARROT_INTERP, void *yyscanner)
+imc_cleanup(PARROT_INTERP, NULLOK(void *yyscanner))
{
IMCC_pop_parser_state(interp, yyscanner);
clear_globals(interp);
I gather that imc_cleanup() does cleaning up and probably needs
an initialized yyscanner. So Parrot should either be prepared for
yyscanner being NULL or complain loudly.
Best regards,
Bernhard