Skip to content

Commit

Permalink
Bug 550158 - EXTRACT_ALL=YES parses non doxygen comments
Browse files Browse the repository at this point in the history
Part of the problem has already been solved by means of "Bug 616379 - doxygen result by nested comment incorrectly" (pull request #6649.
The missing part (start of comment) has been added here.
  • Loading branch information
albert-github committed Oct 7, 2019
1 parent 4e21d19 commit 2718829
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/commentcnv.l
Expand Up @@ -841,6 +841,9 @@ void replaceComment(int offset);
g_inRoseComment=FALSE;
BEGIN(Scan);
}
<ReadLine>"/**" {
copyToOutput("/&zwj;**",8);
}
<ReadLine>"*/" {
copyToOutput("*&zwj;/",7);
}
Expand Down

0 comments on commit 2718829

Please sign in to comment.