summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.css2
-rw-r--r--src/doxygen_css.h2
-rw-r--r--src/vhdlparser.y2
3 files changed, 5 insertions, 1 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}
;
/*------------------------------------------