GNOME Bugzilla – Bug 666337
Latex hyphenation hints added to normal words
Last modified: 2012-02-25 15:37:31 UTC
Hyphenation hints are being added to the initial capital letter of normal words. Example doxygen markup in header: \brief A Documented file. Generated text: \-A \-Documented file. Need to add additional check to the filterLatexString function in util.cpp The variable pc initial value is null. Current code: if (!insideTabbing && ((c>='A' && c<='Z' && pc!=' ') || (c==':' && pc!=':') || (pc=='.' && isId(c))) ) { t << "\\-"; } added check if pc is null to stop hyphenation hint from being added. if (!insideTabbing && ((c>='A' && c<='Z' && pc!=' ' && pc!='\0') || (c==':' && pc!=':') || (pc=='.' && isId(c))) ) { t << "\\-"; }
Thanks Jason, I'll include your fix in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.0. 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.