summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-10-07 11:22:19 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-10-07 11:22:19 (GMT)
commita6da9a48ad520206462632496fc4c83d72bffe5a (patch)
treec1cf6690a7c69da18fe5b0f941a4528cd2b3d2ec
parent27188292dfb9df6eaa5523d14e723cd1049afe9d (diff)
downloadDoxygen-a6da9a48ad520206462632496fc4c83d72bffe5a.zip
Doxygen-a6da9a48ad520206462632496fc4c83d72bffe5a.tar.gz
Doxygen-a6da9a48ad520206462632496fc4c83d72bffe5a.tar.bz2
Bug 550158 - EXTRACT_ALL=YES parses non doxygen comments
Forgot to add the `/` to the not "normal" characters in the ReadLine
-rw-r--r--src/commentcnv.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l
index 4feee30..341ea42 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -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);
}