After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 659514 - Typo in manpage output
Typo in manpage output
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.7.5.1
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2011-09-19 19:37 UTC by Howard Chu
Modified: 2011-12-03 18:22 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Howard Chu 2011-09-19 19:37:51 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;
Comment 1 Dimitri van Heesch 2011-09-29 19:28:49 UTC
Confirmed. Should already be fixed in the latest subversion update.
Comment 2 Dimitri van Heesch 2011-12-03 18:22:50 UTC
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.