From 0f1e5fad06a66bf747e5cb1526be56c747558a79 Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 11 Jan 2019 20:20:34 +0100 Subject: Terminate brief in case of `-#` list With the list types `-`, `*` and `1.` the brief description is terminated, with the `-#` lists this was not the case. --- src/commentscan.l | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/commentscan.l b/src/commentscan.l index 7fab755..c656c9e 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -1282,6 +1282,11 @@ RCSTAG "$"{ID}":"[^\n$]+"$" addOutput(insidePre || Doxygen::markdownSupport ? yytext : "–"); } "-#"{B}+ { // numbered item + if (inContext!=OutputXRef) + { + briefEndsAtDot=FALSE; + setOutput(OutputDoc); + } addOutput(yytext); } ("."+)[a-z_A-Z0-9\)] { // . at start or in the middle of a word, or ellipsis -- cgit v0.12