From dd9275a85bb5e0e4bf3c0a722eb5945f1d421d74 Mon Sep 17 00:00:00 2001 From: Joel Reicher Date: Tue, 10 Apr 2007 06:13:27 +0000 Subject: [PATCH] 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. --- uip/mhlsbr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uip/mhlsbr.c b/uip/mhlsbr.c index 04da52b..ce8b33d 100644 --- a/uip/mhlsbr.c +++ b/uip/mhlsbr.c @@ -1298,6 +1298,8 @@ putcomp (struct mcomp *c1, struct mcomp *c2, int flag) if (term == '\n') putstr ("\n"); } + if (flag == BODYCOMP && term == '\n') + c1->c_flags &= ~HDROUTPUT; /* Buffer ended on a newline */ } -- 1.7.10.4