summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-07-18 09:23:13 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2018-07-18 09:23:13 (GMT)
commit6b0842532668cc394effd27f6b4513b9c63b588f (patch)
treedb2301c645793f3e149a46d630f7fe7e6708b7a1 /src/commentscan.l
parent74c9b5f67758ad21f014f6447d55e8aea6722cb5 (diff)
parentc6adc51933fcb58970bbcf89465d57edc2d19c0d (diff)
downloadDoxygen-6b0842532668cc394effd27f6b4513b9c63b588f.zip
Doxygen-6b0842532668cc394effd27f6b4513b9c63b588f.tar.gz
Doxygen-6b0842532668cc394effd27f6b4513b9c63b588f.tar.bz2
Merge branch 'feature/bug_746419_2' of https://github.com/albert-github/doxygen into albert-github-feature/bug_746419_2
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 841c37e..aae403d 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}">" {