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 612292 - Doxygen does not properly handle comments containing ... (3 dots)
Doxygen does not properly handle comments containing ... (3 dots)
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.6.3
Other All
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2010-03-09 13:45 UTC by tkrotoff
Modified: 2010-06-15 11:22 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description tkrotoff 2010-03-09 13:45:41 UTC
Example of brief comment:
/**
 * Type (FLAC, DivX, MP3...) of a file.
 */

Doxygen stops at the first dot and generates: "Type (FLAC, DivX, MP3" instead of "Type (FLAC, DivX, MP3...) of a file"
Comment 1 Dimitri van Heesch 2010-03-14 10:39:19 UTC
When JAVADOC_AUTOBRIEF is enabled a brief description ends with a .
It is possible to avoid this by adding an escaped space after the dot, i.e. 
".\ "

For ellipsis this is not a good solution, so I'll adjust the parser for this.
An ellipsis followed by a non-space (as in your example) does not need to be escaped. An ellipsis that is followed by a space needs an escaped space, i.e. 
"...\ "
Comment 2 Dimitri van Heesch 2010-06-15 11:22:28 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.7.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.