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 646431 - On generated manpages the return section is incorrectly idented.
On generated manpages the return section is incorrectly idented.
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.7.2
Other Linux
: Normal trivial
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2011-04-01 11:39 UTC by Manuel L. Pereira García
Modified: 2013-04-18 10:07 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
A doxygen configuration file and a code file that can help to see the bug. (19.86 KB, application/x-gzip)
2011-04-01 11:39 UTC, Manuel L. Pereira García
Details
PATCH to have sections start at new line (730 bytes, application/octet-stream)
2013-03-09 14:23 UTC, albert
Details

Description Manuel L. Pereira García 2011-04-01 11:39:54 UTC
Created attachment 184862 [details]
A doxygen configuration file and a code file that can help to see the bug.

Good morning:

On generated manpages the return section is incorrectly idented. I detected it both on Debian 6.0.0 and Ubuntu 10.04 LTS.

This is a pretty-printing bug, so it is not an important bug. Nevertheless, between the pretty-printing bugs, this is an important ones.

Steps to see the bug:
1.- Untargz the attachment in a folder.
2.- Go to the folder where you untargz the attachment.
3.- Run doxygen.
4.- Update the MANPATH environment variable in order to include the man generated directory. On bash, type "export MANPATH=$(pwd)/man:$MANPATH".
5.- Type "man main.c".
  ---> In the main function description you will see that the return section is placed on the same paragraph that the previous section.

Thank you for your attention and for your work.

Carefully,
Manuel L. Pereira García.
Comment 1 albert 2013-03-09 14:23:46 UTC
Created attachment 238453 [details]
PATCH to have sections start at new line

Adjusted default value for m_firstCol of ManDocVisitor was set to TRUE, should be FALSE as otherwise each section would think it is already at a new line which is not necessarily the case.
Comment 2 Dimitri van Heesch 2013-03-31 13:21:08 UTC
Thanks, I'll include the patch in the next subversion update.
Comment 3 Manuel L. Pereira García 2013-04-18 10:07:09 UTC
Thank you very much!