source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: Merge a fix to avoid a regression in OpenBSD: Restore the blank
@ 2010-06-06 22:08 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2010-06-06 22:08 UTC (permalink / raw)
  To: source

Log Message:
-----------
Merge a fix to avoid a regression in OpenBSD:
Restore the blank line before .In in SYNOPSIS
except right after .Sh or right after another .In.

Even though Kristaps says SYNOPSIS blank-line handling
is still very much work in progress and more is probably needed,
this one is useful to keep in sync with OpenBSD.

"fine" 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.141
retrieving revision 1.142
diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.141 -r1.142
--- mdoc_term.c
+++ mdoc_term.c
@@ -1845,6 +1845,9 @@ static int
 termp_in_pre(DECL_ARGS)
 {
 
+	if (SEC_SYNOPSIS == n->sec && n->prev && MDOC_In != n->prev->tok)
+		term_vspace(p);
+
 	if (SEC_SYNOPSIS == n->sec && MDOC_LINE & n->flags) {
 		term_fontpush(p, TERMFONT_BOLD);
 		term_word(p, "#include");
--
 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-06-06 22:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-06 22:08 mdocml: Merge a fix to avoid a regression in OpenBSD: Restore the blank 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).