diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-06-16 11:02:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-16 11:02:19 (GMT) |
commit | 4628578fe856f3ccfe3ade8f702671bfa1854566 (patch) | |
tree | 5ad1fdef5d6bff644091abc6415bb51e4277fba1 /src | |
parent | 19f6c6af35eec305ba58838cd8a416bf0fa64341 (diff) | |
parent | 268721df2152dc5909498391867cdc07cce08b10 (diff) | |
download | Doxygen-4628578fe856f3ccfe3ade8f702671bfa1854566.zip Doxygen-4628578fe856f3ccfe3ade8f702671bfa1854566.tar.gz Doxygen-4628578fe856f3ccfe3ade8f702671bfa1854566.tar.bz2 |
Merge pull request #7054 from albert-github/feature/regr_6945
Missing brief descriptions with `\defgroup`
Diffstat (limited to 'src')
-rw-r--r-- | src/commentscan.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index c32917a..b3902fc 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -2369,6 +2369,7 @@ static bool handleDefGroup(const QCString &, const QCStringList &) { bool stop=makeStructuralIndicator(Entry::GROUPDOC_SEC); current->groupDocType = Entry::GROUPDOC_NORMAL; + setOutput(OutputBrief); BEGIN( GroupDocArg1 ); return stop; } |