summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-05-16 17:08:50 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-05-16 17:08:50 (GMT)
commitc6adc51933fcb58970bbcf89465d57edc2d19c0d (patch)
treecd0b8464d938869a824edbd5cabd4049cb459541 /src
parentdf0d9c3df44dbce633c38e99d33be4de06706f7b (diff)
downloadDoxygen-c6adc51933fcb58970bbcf89465d57edc2d19c0d.zip
Doxygen-c6adc51933fcb58970bbcf89465d57edc2d19c0d.tar.gz
Doxygen-c6adc51933fcb58970bbcf89465d57edc2d19c0d.tar.bz2
Bug 746419 - \todo at end of C# XML comment breaks following todo's
In case of </summary> or </remarks> to be sure to switch back to the right scope
Diffstat (limited to 'src')
-rw-r--r--src/commentscan.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index de31b2e..e67121f 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -1046,10 +1046,13 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
addOutput(yytext);
}
<Comment>"</summary>" { // start of a .NET XML style detailed description
+ setOutput(OutputBrief);
addOutput(yytext);
setOutput(OutputDoc);
}
<Comment>"</remarks>" { // end of a brief or detailed description
+
+ setOutput(OutputDoc);
addOutput(yytext);
}
<Comment>"<"{CAPTION}{ATTR}">" {