diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-02-17 19:07:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 19:07:53 (GMT) |
commit | 5fff1fc1d5b268b47fbdac2c06199b7cf42987a1 (patch) | |
tree | 0354c3b54c6c70ad670471f108872e9395907693 | |
parent | 16c3a50ffa722cabc5dcad3e2069f5334fc90aa9 (diff) | |
parent | f80f7dcce014b42adcbb5d6d6534fa766a0b9219 (diff) | |
download | Doxygen-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
-rw-r--r-- | src/commentscan.l | 2 |
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); } |