diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-26 17:35:49 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-26 17:35:49 +0000 |
commit | 3d128823f6d647c4b811307d0d85af13caf76b9d (patch) | |
tree | b9eee67149d7c6e28e6ec8a248035f4e4ed86430 /mdoc_html.c | |
parent | 39697863464c80bf26f8c9ff0674c3e08fee3b59 (diff) | |
download | mandoc-3d128823f6d647c4b811307d0d85af13caf76b9d.tar.gz |
Fixed `Bd' prior vertical space (was ignoring -compact).
Fixed effect of embedding macros in `Bd' (was printing all on each line instead of grouping).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index b3a31116..ad8415f6 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1327,7 +1327,7 @@ mdoc_bd_pre(MDOC_ARGS) switch (bl->args->argv[i].arg) { case (MDOC_Offset): assert(bl->args->argv[i].sz); - o = a2offs (bl->args->argv[i].value[0]); + o = a2offs(bl->args->argv[i].value[0]); break; case (MDOC_Compact): c = 1; |