diff options
-rw-r--r-- | src/doxygen.css | 2 | ||||
-rw-r--r-- | src/doxygen_css.h | 2 | ||||
-rw-r--r-- | src/vhdlparser.y | 2 | ||||
-rw-r--r-- | winbuild/Doxygen.vcproj | 4 |
4 files changed, 7 insertions, 3 deletions
diff --git a/src/doxygen.css b/src/doxygen.css index 783bc27..8b6f3ae 100644 --- a/src/doxygen.css +++ b/src/doxygen.css @@ -199,6 +199,8 @@ td.indexkey { border: 1px solid ##cc; margin: 2px 0px 2px 0; padding: 2px 10px; + white-space: nowrap; + vertical-align: top; } td.indexvalue { diff --git a/src/doxygen_css.h b/src/doxygen_css.h index 7f5c8b8..00e211b 100644 --- a/src/doxygen_css.h +++ b/src/doxygen_css.h @@ -199,6 +199,8 @@ " border: 1px solid ##cc;\n" " margin: 2px 0px 2px 0;\n" " padding: 2px 10px;\n" +" white-space: nowrap;\n" +" vertical-align: top;\n" "}\n" "\n" "td.indexvalue {\n" diff --git a/src/vhdlparser.y b/src/vhdlparser.y index 6361e8c..d86bbff 100644 --- a/src/vhdlparser.y +++ b/src/vhdlparser.y @@ -363,7 +363,7 @@ physical_literal_1 : /* empty */ {$$="";} physical_literal_no_default : t_AbstractLit t_Identifier {$$=$1+" "+$2;} idf_list : t_Identifier {$$=$1;} - | idf_list t_Comma t_Identifier {$$=$1+","+$3}; + | idf_list t_Comma t_Identifier {$$=$1+","+$3} ; /*------------------------------------------ diff --git a/winbuild/Doxygen.vcproj b/winbuild/Doxygen.vcproj index 0f4be66..22dfecb 100644 --- a/winbuild/Doxygen.vcproj +++ b/winbuild/Doxygen.vcproj @@ -1983,7 +1983,7 @@ > <Tool Name="Lex" - CommandLine="flex -i -PvhdlscanYY [AllOptions] [AdditionalOptions] [inputs]" + CommandLine="flex -i -PvhdlScanYY [AllOptions] [AdditionalOptions] [inputs]" /> </FileConfiguration> <FileConfiguration @@ -1991,7 +1991,7 @@ > <Tool Name="Lex" - CommandLine="flex -i -PvhdlscanYY [AllOptions] [AdditionalOptions] [inputs]" + CommandLine="flex -i -PvhdlScanYY [AllOptions] [AdditionalOptions] [inputs]" /> </FileConfiguration> </File> |