# HG changeset patch # User Richard M. Stallman # Date 738624137 0 # Node ID 1aa8fa0a569e173df62ebcbe29e11688a4b3431c # Parent 0069a30d083f943a7768d310f5c75b5a5914c006 (put_line): Don't output \n\t unless more text follows. diff -r 0069a30d083f -r 1aa8fa0a569e lib-src/fakemail.c --- a/lib-src/fakemail.c Fri May 28 21:13:59 1993 +0000 +++ b/lib-src/fakemail.c Fri May 28 21:22:17 1993 +0000 @@ -436,12 +436,13 @@ } /* 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); }