summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-05-29 16:12:07 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-05-29 16:12:07 (GMT)
commitee73bfd113f119c33383d76d851d36ef0b304645 (patch)
treea4e8f0bb6fa1ab818cb4891b0dd809e1c2108beb /src/doctokenizer.l
parent2b0cffb6a7afe95f3fb872c553a0de60d19029af (diff)
downloadDoxygen-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`)
Diffstat (limited to 'src/doctokenizer.l')
-rw-r--r--src/doctokenizer.l1
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);