Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 May 2012 08:01:35 +0000
From:      jhagewood@FreeBSD.org
To:        svn-soc-all@FreeBSD.org
Subject:   socsvn commit: r236804 - in soc2012/jhagewood/mdocml: . mdocml-1.12.1
Message-ID:  <20120531080135.577181065687@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhagewood
Date: Thu May 31 08:01:35 2012
New Revision: 236804
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=236804

Log:

Modified:
  soc2012/jhagewood/mdocml/hagewood-mdocml.patch
  soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_html.c
  soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_term.c

Modified: soc2012/jhagewood/mdocml/hagewood-mdocml.patch
==============================================================================
--- soc2012/jhagewood/mdocml/hagewood-mdocml.patch	Thu May 31 07:44:27 2012	(r236803)
+++ soc2012/jhagewood/mdocml/hagewood-mdocml.patch	Thu May 31 08:01:35 2012	(r236804)
@@ -11,7 +11,7 @@
  
 diff -rupN mdocml-1.12.1-orig/mdoc_html.c mdocml-1.12.1/mdoc_html.c
 --- mdocml-1.12.1-orig/mdoc_html.c	2012-05-31 07:34:22.000000000 -0400
-+++ mdocml-1.12.1/mdoc_html.c	2012-05-31 07:55:41.000000000 -0400
++++ mdocml-1.12.1/mdoc_html.c	2012-05-31 08:00:40.000000000 -0400
 @@ -28,6 +28,7 @@
  #include <unistd.h>
  
@@ -28,7 +28,7 @@
 -	if ( ! (MDOC_LINE & n->flags))
 -		h->flags |= HTML_NOSPACE;
 -	return(1);
-+	if(!roff_regisset(n->type, REG_ns))
++	if(!roff_regisset(m->roff, REG_ns))
 +	{
 +		if ( ! (MDOC_LINE & n->flags))
 +			h->flags |= HTML_NOSPACE;
@@ -39,7 +39,7 @@
  
 diff -rupN mdocml-1.12.1-orig/mdoc_term.c mdocml-1.12.1/mdoc_term.c
 --- mdocml-1.12.1-orig/mdoc_term.c	2012-05-31 07:34:22.000000000 -0400
-+++ mdocml-1.12.1/mdoc_term.c	2012-05-31 07:56:00.000000000 -0400
++++ mdocml-1.12.1/mdoc_term.c	2012-05-31 08:00:51.000000000 -0400
 @@ -29,6 +29,7 @@
  #include <string.h>
  
@@ -55,7 +55,7 @@
 -
 -	if ( ! (MDOC_LINE & n->flags))
 -		p->flags |= TERMP_NOSPACE;
-+	if (!roff_regisset(n->type, REG_ns)) 
++	if (!roff_regisset(m->roff, REG_ns)) 
 +	{
 +		if ( ! (MDOC_LINE & n->flags))
 +			p->flags |= TERMP_NOSPACE;

Modified: soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_html.c
==============================================================================
--- soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_html.c	Thu May 31 07:44:27 2012	(r236803)
+++ soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_html.c	Thu May 31 08:01:35 2012	(r236804)
@@ -768,7 +768,7 @@
 static int
 mdoc_ns_pre(MDOC_ARGS)
 {
-	if(!roff_regisset(n->type, REG_ns))
+	if(!roff_regisset(m->roff, REG_ns))
 	{
 		if ( ! (MDOC_LINE & n->flags))
 			h->flags |= HTML_NOSPACE;

Modified: soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_term.c
==============================================================================
--- soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_term.c	Thu May 31 07:44:27 2012	(r236803)
+++ soc2012/jhagewood/mdocml/mdocml-1.12.1/mdoc_term.c	Thu May 31 08:01:35 2012	(r236804)
@@ -1148,7 +1148,7 @@
 static int
 termp_ns_pre(DECL_ARGS)
 {
-	if (!roff_regisset(n->type, REG_ns)) 
+	if (!roff_regisset(m->roff, REG_ns)) 
 	{
 		if ( ! (MDOC_LINE & n->flags))
 			p->flags |= TERMP_NOSPACE;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20120531080135.577181065687>