diff options
author | albert-github <albert.tests@gmail.com> | 2019-10-07 11:22:19 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-10-07 11:22:19 (GMT) |
commit | a6da9a48ad520206462632496fc4c83d72bffe5a (patch) | |
tree | c1cf6690a7c69da18fe5b0f941a4528cd2b3d2ec /src | |
parent | 27188292dfb9df6eaa5523d14e723cd1049afe9d (diff) | |
download | Doxygen-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
Diffstat (limited to 'src')
-rw-r--r-- | src/commentcnv.l | 4 |
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); } |