diff options
author | albert-github <albert.tests@gmail.com> | 2019-05-29 16:12:07 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-05-29 16:12:07 (GMT) |
commit | ee73bfd113f119c33383d76d851d36ef0b304645 (patch) | |
tree | a4e8f0bb6fa1ab818cb4891b0dd809e1c2108beb | |
parent | 2b0cffb6a7afe95f3fb872c553a0de60d19029af (diff) | |
download | Doxygen-ee73bfd113f119c33383d76d851d36ef0b304645.zip Doxygen-ee73bfd113f119c33383d76d851d36ef0b304645.tar.gz Doxygen-ee73bfd113f119c33383d76d851d36ef0b304645.tar.bz2 |
issue 7015 Parsing issue with @includedoc and @startuml
In case of `\includedoc` the `\n` was not handled on the first line (`@startuml`)
-rw-r--r-- | src/doctokenizer.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l index 7b402ca..b829fc9 100644 --- a/src/doctokenizer.l +++ b/src/doctokenizer.l @@ -902,6 +902,7 @@ REFWORD_NOCV {FILEMASK}|{LABELID}|{REFWORD2_NOCV}|{REFWORD3}|{REFWORD4_NOCV} g_token->sectionId = QCString(yytext).stripWhiteSpace(); return RetVal_OK; } +<St_PlantUMLOpt>"\n" | <St_PlantUMLOpt>. { g_token->sectionId = ""; unput(*yytext); |