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
Forgot to add the `/` to the not "normal" characters in the ReadLine
  • Loading branch information
albert-github committed Oct 7, 2019
1 parent 2718829 commit a6da9a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commentcnv.l
Expand Up @@ -850,10 +850,10 @@ void replaceComment(int offset);
<ReadLine>"*" {
copyToOutput(yytext,(int)yyleng);
}
<ReadLine>[^\\@\n\*]* {
<ReadLine>[^\\@\n\*/]* {
copyToOutput(yytext,(int)yyleng);
}
<ReadLine>[^\\@\n\*]*/\n {
<ReadLine>[^\\@\n\*/]*/\n {
copyToOutput(yytext,(int)yyleng);
BEGIN(g_readLineCtx);
}
Expand Down

0 comments on commit a6da9a4

Please sign in to comment.