Skip to content

Commit

Permalink
issue #8709: Warnings after #8671
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Aug 11, 2021
1 parent d6e09b7 commit 640614e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commentscan.l
Original file line number Diff line number Diff line change
Expand Up @@ -695,8 +695,9 @@ STopt [^\n@\\]*
!(yyextra->inContext==OutputXRef && cmdName=="parblock"))
{
yyextra->briefEndsAtDot=FALSE;
bool insideXRef = yyextra->inContext==OutputXRef && spacing==CommandSpacing::XRef;
// this command forces the end of brief description
setOutput(yyscanner,spacing==CommandSpacing::Block ? OutputDoc : OutputXRef);
setOutput(yyscanner,insideXRef ? OutputXRef : OutputDoc);
}
//if (i>0) addOutput(yyscanner,QCString(yytext).left(i)); // removed for bug 689341
if (it->second.handler && it->second.handler(yyscanner, cmdName, optList))
Expand Down

0 comments on commit 640614e

Please sign in to comment.