summaryrefslogtreecommitdiffstats
path: root/src/vhdlscanner.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdlscanner.l')
-rw-r--r--src/vhdlscanner.l7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vhdlscanner.l b/src/vhdlscanner.l
index 898713e..54ad209 100644
--- a/src/vhdlscanner.l
+++ b/src/vhdlscanner.l
@@ -532,6 +532,13 @@ BR [ \t\n\r]
{
REJECT;
}
+ else if (qcs.stripPrefix("--#"))
+ {
+ if (VhdlDocGen::getFlowMember())
+ {
+ FlowChart::addFlowChart(FlowChart::COMMENT_NO,0,0,qcs.data());
+ }
+ }
}
. { /* unknown characters */ }