diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-09-11 09:36:44 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-09-11 09:36:44 (GMT) |
commit | 6c6b847bcd16cc818165b51e62dc11a947f7e084 (patch) | |
tree | cee778f76794bda03c65c3c24c48974bbb486490 | |
parent | 6fb370b9f79271a4ff2a0a0723b023858418a252 (diff) | |
download | Doxygen-6c6b847bcd16cc818165b51e62dc11a947f7e084.zip Doxygen-6c6b847bcd16cc818165b51e62dc11a947f7e084.tar.gz Doxygen-6c6b847bcd16cc818165b51e62dc11a947f7e084.tar.bz2 |
Bug 771199 - Web-page bug: Comment blocks in VHDL
-rw-r--r-- | src/vhdlcode.l | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vhdlcode.l b/src/vhdlcode.l index ebebc10..27743e3 100644 --- a/src/vhdlcode.l +++ b/src/vhdlcode.l @@ -182,7 +182,6 @@ static void startCodeLine() //if (g_currentFontClass) { g_code->endFontClass(); } if (g_sourceFileDef) { - g_startCode=TRUE; //QCString lineNumber,lineAnchor; //lineNumber.sprintf("%05d",g_yyLineNr); //lineAnchor.sprintf("l%05d",g_yyLineNr); @@ -230,13 +229,13 @@ static void startCodeLine() } } g_code->startCodeLine(g_sourceFileDef); + g_startCode=TRUE; if (g_currentFontClass) { g_code->startFontClass(g_currentFontClass); } } -static void endFontClass(); static void endCodeLine() { endFontClass(); |