From c6adc51933fcb58970bbcf89465d57edc2d19c0d Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 16 May 2018 19:08:50 +0200 Subject: Bug 746419 - \todo at end of C# XML comment breaks following todo's In case of or to be sure to switch back to the right scope --- src/commentscan.l | 3 +++ 1 file changed, 3 insertions(+) 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); } "" { // start of a .NET XML style detailed description + setOutput(OutputBrief); addOutput(yytext); setOutput(OutputDoc); } "" { // end of a brief or detailed description + + setOutput(OutputDoc); addOutput(yytext); } "<"{CAPTION}{ATTR}">" { -- cgit v0.12