diff options
-rw-r--r-- | man2html/man2html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/man2html/man2html.c b/man2html/man2html.c index 083e556..05090c3 100644 --- a/man2html/man2html.c +++ b/man2html/man2html.c @@ -402,6 +402,8 @@ dl_begin_class(const char *class) { if (itemdepth < SIZE(dl_set) && dl_set[itemdepth] == noDL) { out_htmlf(dl_open_cls[DL], class); dl_set[itemdepth]=DL; + } else { + out_html("</dd>"); } out_html("<dt>"); } |