summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-02-17 19:07:53 (GMT)
committerGitHub <noreply@github.com>2021-02-17 19:07:53 (GMT)
commit5fff1fc1d5b268b47fbdac2c06199b7cf42987a1 (patch)
tree0354c3b54c6c70ad670471f108872e9395907693 /src
parent16c3a50ffa722cabc5dcad3e2069f5334fc90aa9 (diff)
parentf80f7dcce014b42adcbb5d6d6534fa766a0b9219 (diff)
downloadDoxygen-5fff1fc1d5b268b47fbdac2c06199b7cf42987a1.zip
Doxygen-5fff1fc1d5b268b47fbdac2c06199b7cf42987a1.tar.gz
Doxygen-5fff1fc1d5b268b47fbdac2c06199b7cf42987a1.tar.bz2
Merge pull request #8351 from albert-github/feature/bug_cs_summary
Wrong place in comment scanner of end summary tag
Diffstat (limited to 'src')
-rw-r--r--src/commentscan.l2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 767b964..faaa1fc 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -592,12 +592,10 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
addOutput(yyscanner,yytext);
}
<Comment>"</summary>" { // start of a .NET XML style detailed description
- setOutput(yyscanner,OutputBrief);
addOutput(yyscanner,yytext);
setOutput(yyscanner,OutputDoc);
}
<Comment>"</remarks>" { // end of a brief or detailed description
-
setOutput(yyscanner,OutputDoc);
addOutput(yyscanner,yytext);
}