GNOME Bugzilla – Bug 735759
Broken man pages due to bad use of autoBreak
Last modified: 2014-12-25 16:02:47 UTC
Created attachment 284947 [details] Example file that triggers the bug. When generating manpages any call that generates manpage output between the calls to startMemberItem() and endMemberItem() must not write newline characters to the manpage since this will make the manpage not display correctly. The reason is thet the call to startMemberItem() outputs a quotation mark that starts a string and the call to endMemberItem() outputs a matching quotation mark that ends the string. This string must be on a single line to comply to manpage syntax. In most cases this works as expected, but there are calls to linkifyText with autoBreak set to true between the calls that makes things fail under some conditions. The attached fails shows te problem. Setting autoBreak to false in the relevant linkifyText calls fixes the problem.
https://github.com/doxygen/doxygen/pull/218
Thanks, I've merged the pull request.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.9. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferrably in the form of a self-contained example).