groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Groff-commit] groff/contrib/mm ChangeLog m.tmac


From: Werner LEMBERG
Subject: [Groff-commit] groff/contrib/mm ChangeLog m.tmac
Date: Sun, 30 May 2010 05:18:10 +0000

CVSROOT:        /cvsroot/groff
Module name:    groff
Changes by:     Werner LEMBERG <wl>     10/05/30 05:18:10

Modified files:
        contrib/mm     : ChangeLog m.tmac 

Log message:
        * m.tmac (P, nP): Fix handling of short paragraphs.
        Otherwise,
        
          .H 1 Bug
          .P
          one
          .P
          two
          .P
          three
        
        results in:
        
          1.  Bug
        
          one two three
        
        whereas it should, of course, produce:
        
          1.  Bug
        
          one
        
          two
        
          three

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/groff/contrib/mm/ChangeLog?cvsroot=groff&r1=2.45&r2=2.46
http://cvs.savannah.gnu.org/viewcvs/groff/contrib/mm/m.tmac?cvsroot=groff&r1=2.37&r2=2.38

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/groff/groff/contrib/mm/ChangeLog,v
retrieving revision 2.45
retrieving revision 2.46
diff -u -b -r2.45 -r2.46
--- ChangeLog   5 Jan 2009 20:10:42 -0000       2.45
+++ ChangeLog   30 May 2010 05:18:10 -0000      2.46
@@ -1,3 +1,32 @@
+Sun May 30 07:14:15 2010  Larry Jones  <address@hidden>
+
+       * m.tmac (P, nP): Fix handling of short paragraphs.
+       Otherwise,
+
+         .H 1 Bug
+         .P
+         one
+         .P
+         two
+         .P
+         three
+
+       results in:
+
+         1.  Bug
+
+         one two three
+
+       whereas it should, of course, produce:
+
+         1.  Bug
+
+         one
+
+         two
+
+         three
+
 Sat Jan  3 08:55:15 2009  Werner LEMBERG  <address@hidden>
 
        * groff_mm.man: Use new `x' table modifier for all tables which use

Index: m.tmac
===================================================================
RCS file: /cvsroot/groff/groff/contrib/mm/m.tmac,v
retrieving revision 2.37
retrieving revision 2.38
diff -u -b -r2.37 -r2.38
--- m.tmac      14 May 2010 04:40:33 -0000      2.37
+++ m.tmac      30 May 2010 05:18:10 -0000      2.38
@@ -3,8 +3,8 @@
 .ds RE \\$2
 ..
 .\"
-.\" $Id: m.tmac,v 2.37 2010/05/14 04:40:33 wl Exp $
address@hidden $Revision: 2.37 $
+.\" $Id: m.tmac,v 2.38 2010/05/30 05:18:10 wl Exp $
address@hidden $Revision: 2.38 $
 .ig
 
 Copyright (C) 1991-2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
@@ -431,7 +431,7 @@
 .      tm Paragraph nl=\\n[nl], last=\\n[hd*last-pos]
 .      tm Paragraph .k=\\n[.k], hsize=\\n[hd*last-hsize]
 .\}
-.if !((\\n[nl]=\\n[hd*last-pos]):(\\n[hd*last-hsize]=\\n[.k])) \{\
+.if !((\\n[nl]=\\n[hd*last-pos])&(\\n[hd*last-hsize]=\\n[.k])) \{\
 .      if \\n[D]>2 .tm Paragraph set ind-flag=1
 .      nr address@hidden 1
 .      \" any collected unprinted text?
@@ -446,7 +446,7 @@
 .      tm Paragraph nl=\\n[nl], last=\\n[hd*last-pos]
 .      tm Paragraph .k=\\n[.k], hsize=\\n[hd*last-hsize]
 .\}
-.if !((\\n[nl]=\\n[hd*last-pos]):(\\n[hd*last-hsize]=\\n[.k])) \{\
+.if !((\\n[nl]=\\n[hd*last-pos])&(\\n[hd*last-hsize]=\\n[.k])) \{\
 .      if \\n[D]>2 .tm Paragraph set ind-flag=1
 .      nr address@hidden 1
 .\}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]