diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-19 10:18:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-19 10:18:05 +0000 |
commit | 419e256605cda094f50f8a984fa8896dded53e7f (patch) | |
tree | 60203b3190e0e3045af14dba202f5e36197758fc /mdoc_html.c | |
parent | e9b4a2a77a14b1e378aec8c2faa388c8f22d89fa (diff) | |
download | mandoc-419e256605cda094f50f8a984fa8896dded53e7f.tar.gz |
Fixed -mdoc -Thtml with -item lists not to default-indent when width isn't specified.
Many more cleanups to mdoc.7 (ongoing completion and documentation of all macros).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 403537cc..98124ced 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1068,6 +1068,8 @@ mdoc_it_pre(MDOC_ARGS) /* Override width in some cases. */ switch (type) { + case (MDOC_Item): + /* FALLTHROUGH */ case (MDOC_Inset): /* FALLTHROUGH */ case (MDOC_Diag): |