diff options
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index 02716ee..e2e6be0 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -122,7 +122,13 @@ void FileDef::writeDetailedDocumentation(OutputList &ol) if (!briefDescription().isEmpty() && Config_getBool("REPEAT_BRIEF") && !documentation().isEmpty()) { - ol.newParagraph(); + ol.pushGeneratorState(); + ol.disable(OutputGenerator::Man); + ol.newParagraph(); + ol.enableAll(); + ol.disableAllBut(OutputGenerator::Man); + ol.writeString("\n\n"); + ol.popGeneratorState(); } if (!documentation().isEmpty()) { |