GNOME Bugzilla – Bug 659514
Typo in manpage output
Last modified: 2011-12-03 18:22:50 UTC
There is an extraneous single-quote character in the manpage output before every period character. The bug is in both the released 1.7.5.1 and the latest SVN. It's caused by a typo here: Index: src/mandocvisitor.cpp =================================================================== --- src/mandocvisitor.cpp (revision 775) +++ src/mandocvisitor.cpp (working copy) @@ -965,7 +965,7 @@ { switch(c) { - case '.': m_t << "'\\&."; break; // see bug652277 + case '.': m_t << "\\&."; break; // see bug652277 case '\\': m_t << "\\\\"; break; case '"': c = '\''; // fall through default: m_t << c; break;
Confirmed. Should already be fixed in the latest subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.7.6. 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.