summaryrefslogtreecommitdiffstats
path: root/src/commentcnv.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-10-07 10:59:41 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-10-07 10:59:41 (GMT)
commit27188292dfb9df6eaa5523d14e723cd1049afe9d (patch)
tree854d6c975c9724a142f18a823f5e692c44e91c9f /src/commentcnv.l
parent4e21d19cf63b17aadb62905535262deb208a0c73 (diff)
downloadDoxygen-27188292dfb9df6eaa5523d14e723cd1049afe9d.zip
Doxygen-27188292dfb9df6eaa5523d14e723cd1049afe9d.tar.gz
Doxygen-27188292dfb9df6eaa5523d14e723cd1049afe9d.tar.bz2
Bug 550158 - EXTRACT_ALL=YES parses non doxygen comments
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.
Diffstat (limited to 'src/commentcnv.l')
-rw-r--r--src/commentcnv.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l
index f144aec..4feee30 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -841,6 +841,9 @@ void replaceComment(int offset);
g_inRoseComment=FALSE;
BEGIN(Scan);
}
+<ReadLine>"/**" {
+ copyToOutput("/&zwj;**",8);
+ }
<ReadLine>"*/" {
copyToOutput("*&zwj;/",7);
}