source@mandoc.bsd.lv
 help / color / mirror / Atom feed
From: kristaps@mdocml.bsd.lv
To: source@mdocml.bsd.lv
Subject: mdocml: Remove `Pp' and `Lp' checks in front-ends to make sure we're not
Date: Wed, 15 Dec 2010 18:44:02 -0500 (EST)	[thread overview]
Message-ID: <201012152344.oBFNi2gW010029@krisdoz.my.domain> (raw)

Log Message:
-----------
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.

Modified Files:
--------------
    mdocml:
        mdoc_html.c
        mdoc_term.c

Revision Data
-------------
Index: mdoc_html.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_html.c,v
retrieving revision 1.120
retrieving revision 1.121
diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.120 -r1.121
--- mdoc_html.c
+++ 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);
 
Index: mdoc_term.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v
retrieving revision 1.197
retrieving revision 1.198
diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.197 -r1.198
--- mdoc_term.c
+++ mdoc_term.c
@@ -1815,11 +1815,6 @@ termp_sp_pre(DECL_ARGS)
 		len = 0;
 		break;
 	default:
-		assert(n->parent);
-		if ((NULL == n->next || NULL == n->prev) &&
-				(MDOC_Ss == n->parent->tok ||
-				 MDOC_Sh == n->parent->tok))
-			return(0);
 		len = 1;
 		break;
 	}
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

                 reply	other threads:[~2010-12-15 23:44 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201012152344.oBFNi2gW010029@krisdoz.my.domain \
    --to=kristaps@mdocml.bsd.lv \
    --cc=source@mdocml.bsd.lv \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).