From 2839585ee67cd98d7251f8bd59de30af7729296a Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 15 Dec 2010 23:44:02 +0000 Subject: Remove `Pp' and `Lp' checks in front-ends to make sure we're not printing as the first or last child of an `Ss' or `Sh': this is now ensured within the validator. --- mdoc_html.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'mdoc_html.c') diff --git a/mdoc_html.c b/mdoc_html.c index b24414f0..ddc04a59 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1542,11 +1542,6 @@ static int mdoc_pp_pre(MDOC_ARGS) { - if ((NULL == n->next || NULL == n->prev) && - (MDOC_Ss == n->parent->tok || - MDOC_Sh == n->parent->tok)) - return(0); - print_otag(h, TAG_P, 0, NULL); return(0); -- cgit