From c9b7739a74541dbef4f181b528747683621fdc59 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 28 Feb 2009 14:40:07 +0000 Subject: Added support for traditional `Ds' width. --- action.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'action.c') diff --git a/action.c b/action.c index f1986718..38ec2dd4 100644 --- a/action.c +++ b/action.c @@ -392,10 +392,11 @@ post_bl_width(struct mdoc *mdoc) * the macro's width as set in share/tmac/mdoc/doc-common. */ - if (MDOC_MAX == (tok = mdoc_find(mdoc, *p))) + if (xstrcmp(*p, "Ds")) + width = 6; + else if (MDOC_MAX == (tok = mdoc_find(mdoc, *p))) return(1); - - if (0 == (width = mdoc_macro2len(tok))) + else if (0 == (width = mdoc_macro2len(tok))) return(mdoc_warn(mdoc, WARN_SYNTAX, "-%s macro has no length", mdoc_argnames[MDOC_Width])); -- cgit