diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-18 09:23:13 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-18 09:23:13 (GMT) |
commit | 6b0842532668cc394effd27f6b4513b9c63b588f (patch) | |
tree | db2301c645793f3e149a46d630f7fe7e6708b7a1 | |
parent | 74c9b5f67758ad21f014f6447d55e8aea6722cb5 (diff) | |
parent | c6adc51933fcb58970bbcf89465d57edc2d19c0d (diff) | |
download | Doxygen-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
-rw-r--r-- | src/commentscan.l | 3 |
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}">" { |