diff options
author | Artur Kink <artur.kinK@gmail.com> | 2016-09-25 03:38:16 (GMT) |
---|---|---|
committer | Artur Kink <artur.kinK@gmail.com> | 2016-09-25 03:38:16 (GMT) |
commit | 98d3f8e7d581c589e7bd1a7faf98fc6736847cf1 (patch) | |
tree | f62392dd3c901ce841e5afe082696aff0fddc13a /src/mangen.cpp | |
parent | d4beb392b452d14d375e1406ec4fb0f6436081ee (diff) | |
download | Doxygen-98d3f8e7d581c589e7bd1a7faf98fc6736847cf1.zip Doxygen-98d3f8e7d581c589e7bd1a7faf98fc6736847cf1.tar.gz Doxygen-98d3f8e7d581c589e7bd1a7faf98fc6736847cf1.tar.bz2 |
For manpages remove trailing dash when no brief description
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r-- | src/mangen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp index 963f66c..2f4d3ae 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -191,7 +191,7 @@ void ManGenerator::endTitleHead(const char *,const char *name) t << ".ad l" << endl; t << ".nh" << endl; t << ".SH NAME" << endl; - t << name << " \\- "; + t << name; firstCol=FALSE; paragraph=TRUE; inHeader=TRUE; |