Skip to content

Commit c4353ee

Browse files
committed
issue #10353 Doxygen cannot handle TYPEDEF after PlantUML
"startuml" was not recognized as it got "startuml " (i.e. with space(s) at the end).
1 parent 3bcabe5 commit c4353ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pre.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3387,7 +3387,7 @@ static void determineBlockName(yyscan_t yyscanner)
33873387
else
33883388
{
33893389
QCString bn=&yytext[1];
3390-
if (bn=="startuml")
3390+
if (bn.stripWhiteSpace()=="startuml")
33913391
{
33923392
yyextra->blockName="uml";
33933393
}

0 commit comments

Comments
 (0)