source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: merge from OpenBSD mdoc_term.c rev.
@ 2010-08-07 17:11 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2010-08-07 17:11 UTC (permalink / raw)
  To: source

Log Message:
-----------
merge from OpenBSD mdoc_term.c rev. 1.100:
preserve blank lines in .Bd -literal,
both in the middle and at the end of the display
ok kristaps@

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

Revision Data
-------------
Index: mdoc_term.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v
retrieving revision 1.179
retrieving revision 1.180
diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.179 -r1.180
--- mdoc_term.c
+++ mdoc_term.c
@@ -1653,9 +1653,11 @@ termp_bd_pre(DECL_ARGS)
 	p->rmargin = p->maxrmargin = TERM_MAXMARGIN;
 
 	for (nn = n->child; nn; nn = nn->next) {
-		if (nn->prev && nn->prev->line < nn->line)
-			term_newln(p);
 		print_mdoc_node(p, pair, m, nn);
+		if (nn->next && nn->next->line == nn->line)
+			continue;
+		term_flushln(p);
+		p->flags |= TERMP_NOSPACE;
 	}
 
 	p->tabwidth = tabwidth;
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-07 17:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-07 17:11 mdocml: merge from OpenBSD mdoc_term.c rev schwarze

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).