From c1380f31bfd2b5bf42f6ffce36cc871e8a01f827 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 28 May 1993 21:22:17 +0000 Subject: [PATCH] (put_line): Don't output \n\t unless more text follows. --- lib-src/fakemail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c index 464a739e998..a78fbe87f26 100644 --- a/lib-src/fakemail.c +++ b/lib-src/fakemail.c @@ -436,12 +436,13 @@ put_line (string) } /* Output that much, then break the line. */ fwrite (s, 1, breakpos - s, rem->handle); - fputs ("\n\t", rem->handle); column = 8; /* Skip whitespace and prepare to print more addresses. */ s = breakpos; while (*s == ' ' || *s == '\t') ++s; + if (*s != 0) + fputs ("\n\t", rem->handle); } putc ('\n', rem->handle); }