nmh-commits
[Top][All Lists]
Advanced

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

[Nmh-commits] nmh/uip mhlsbr.c


From: Joel Reicher
Subject: [Nmh-commits] nmh/uip mhlsbr.c
Date: Tue, 10 Apr 2007 06:13:27 +0000

CVSROOT:        /sources/nmh
Module name:    nmh
Changes by:     Joel Reicher <jjr>      07/04/10 06:13:27

Modified files:
        uip            : mhlsbr.c 

Log message:
        Fix for bug #11139: mhl -form mhl.reply omits '> ' on some lines.
        
        putcomp() was assuming only the first call on the body had the buffer
        beginning at the start of a line.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/nmh/uip/mhlsbr.c?cvsroot=nmh&r1=1.10&r2=1.11

Patches:
Index: mhlsbr.c
===================================================================
RCS file: /sources/nmh/nmh/uip/mhlsbr.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- mhlsbr.c    8 Mar 2006 12:14:16 -0000       1.10
+++ mhlsbr.c    10 Apr 2007 06:13:27 -0000      1.11
@@ -2,7 +2,7 @@
 /*
  * mhlsbr.c -- main routines for nmh message lister
  *
- * $Id: mhlsbr.c,v 1.10 2006/03/08 12:14:16 bress Exp $
+ * $Id: mhlsbr.c,v 1.11 2007/04/10 06:13:27 jjr Exp $
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
@@ -1298,6 +1298,8 @@
        if (term == '\n')
            putstr ("\n");
     }
+    if (flag == BODYCOMP && term == '\n')
+       c1->c_flags &= ~HDROUTPUT;              /* Buffer ended on a newline */
 }
 
 




reply via email to

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