From 2c7d8f319fcab79d83a632f37bdacf5ff71f26c1 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 6 Apr 2010 16:27:53 +0000 Subject: Allow `Bd' to accept (warn about then ignore) in-line arguments. --- mdoc_term.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 12e3afda..fbffb6c0 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.115 2010/04/06 11:28:17 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.116 2010/04/06 16:27:53 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -1604,8 +1604,8 @@ termp_bd_pre(DECL_ARGS) if (MDOC_BLOCK == n->type) { print_bvspace(p, n, n); return(1); - } else if (MDOC_BODY != n->type) - return(1); + } else if (MDOC_HEAD == n->type) + return(0); nn = n->parent; -- cgit v1.2.3