Skip to content

Commit 327423e

Browse files
committed
issue #7852, #7867, #7901: Changed the set of commands that effect ending a brief description
1 parent 38e6d47 commit 327423e

File tree

6 files changed

+159
-150
lines changed

6 files changed

+159
-150
lines changed

src/commentscan.l

Lines changed: 150 additions & 146 deletions
Large diffs are not rendered by default.

src/groupdef.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,6 +1207,11 @@ void GroupDefImpl::writeDocumentation(OutputList &ol)
12071207
ol.pushGeneratorState();
12081208
ol.disableAllBut(OutputGenerator::Man);
12091209
ol.endTitleHead(getOutputFileBase(),name());
1210+
if (!m_title.isEmpty())
1211+
{
1212+
ol.writeString(" - ");
1213+
ol.parseText(m_title);
1214+
}
12101215
ol.popGeneratorState();
12111216
ol.endHeaderSection();
12121217
ol.startContents();

testing/019/group__g1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
</memberdef>
2121
</sectiondef>
2222
<briefdescription>
23-
<para>Text for first group. </para>
2423
</briefdescription>
2524
<detaileddescription>
25+
<para>Text for first group. </para>
2626
</detaileddescription>
2727
</compounddef>
2828
</doxygen>

testing/019/group__g2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
</memberdef>
2222
</sectiondef>
2323
<briefdescription>
24-
<para>Text for second group. </para>
2524
</briefdescription>
2625
<detaileddescription>
26+
<para>Text for second group. </para>
2727
</detaileddescription>
2828
</compounddef>
2929
</doxygen>

testing/019/group__g3.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
</memberdef>
3535
</sectiondef>
3636
<briefdescription>
37-
<para>Text for third group. </para>
3837
</briefdescription>
3938
<detaileddescription>
39+
<para>Text for third group. </para>
4040
</detaileddescription>
4141
</compounddef>
4242
</doxygen>

testing/019_defgroup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void func_g3();
3838
/** \} */
3939

4040
/** \addtogroup g3
41-
* \{
41+
* \{
4242
*/
4343

4444
/** Another function added to the third group */

0 commit comments

Comments
 (0)