We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dcc012 commit a87b38eCopy full SHA for a87b38e
src/commentscan.l
@@ -1547,8 +1547,11 @@ STopt [^\n@\\]*
1547
}
1548
//if (*yytext=='\n') yyextra->lineNr++;
1549
//addOutput(yyscanner,'\n');
1550
- addOutput(yyscanner," \\ifile \""+ yyextra->fileName);
1551
- addOutput(yyscanner,"\" \\iline " + QCString().setNum(yyextra->lineNr + extraLineNr) + " \\ilinebr ");
+ if ( yyextra->current->groupDocType!=Entry::GROUPDOC_NORMAL)
+ {
1552
+ addOutput(yyscanner," \\ifile \""+ yyextra->fileName);
1553
+ addOutput(yyscanner,"\" \\iline " + QCString().setNum(yyextra->lineNr + extraLineNr) + " \\ilinebr ");
1554
+ }
1555
BEGIN( Comment );
1556
1557
<GroupDocArg2>. { // title (stored in type)
0 commit comments