On 28/11/2014 13:58, Kjell Ahlstedt
wrote:
The message is printed by glibmm/tools/pm/DocsParser.pm, line 378-379, Phew - this has had me tearing my hair out for the whole afternoon! Up to now, the output text from those lines looked something like this:- gmmproc: error: GIOErrorEnum: Example code discarded. Basically what I found was that if the text "error" appears anywhere between the 1st and 2nd colon, MSVC assumes that an error occurred. It makes no difference if those characters are on their own or as part of some other string. So all these variations will get regarded as an error:- print STDERR "gmmproc: error: $obj_name: Example code discarded.\n"; print STDERR "gmmproc: something_with_error_in_it: $obj_name: Example code discarded.\n"; print STDERR "gmmproc: \"no error detected\": any text here: Example code discarded.\n"; I also tried printing to STDOUT (in the hope that the word "error" on STDOUT mightn't get interpreted as an error - but no such luck :-( In the end, I found that the only real solution is to remove that first colon (after 'gmmproc'). I experimented with a few variations and my favourite was probably this one:- print STDERR "gmmproc ($main::source.hg) - $obj_name: Example code discarded.\n" if ($example_removals); The resulting text looks like this:- gmmproc (error.hg) - GIOErrorEnum: Example code discarded. Note that there's only one colon! To my eyes, that looks the most pleasing - but of course, it no longer matches the other printouts which have multiple colons - so (for neatness) they'd probably all need to get adjusted. Kjell - if you have any other preferences that you'd like me to try, just list them in an email and I'll try them over the weekend. Thanks again, John |