diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-22 12:04:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-22 12:04:05 +0000 |
commit | 5ff3d11b2e760657dd7adae6fb66cdc78ebd34ad (patch) | |
tree | 83cbd924ee999aea6b128ebb6553fb4a04fdba0d /mdoc_action.c | |
parent | 39df69a9d68b05fb09136083471adee4d2817687 (diff) | |
download | mandoc-5ff3d11b2e760657dd7adae6fb66cdc78ebd34ad.tar.gz |
Added "Spacing" part of "Punctuation and Spacing" in mandoc.1 manual.
Fixed `Ds' meta-macro default width.
Fixed -width and -offset "indent", "indent-two", and "left" widths.
Fixed -width and -offset literal-word and numeric widths.
Fixed off-by-one errors in whitespace output (schwarze@openbsd.org).
Diffstat (limited to 'mdoc_action.c')
-rw-r--r-- | mdoc_action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index e1517a11..3941f4fb 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -614,7 +614,7 @@ post_bl_width(struct mdoc *m) */ if (0 == strcmp(p, "Ds")) - width = 8; + width = 6; else if (MDOC_MAX == (tok = mdoc_hash_find(m->htab, p))) return(1); else if (0 == (width = mdoc_macro2len(tok))) |