comparison lib-src/fakemail.c @ 3219:1aa8fa0a569e

(put_line): Don't output \n\t unless more text follows.
author Richard M. Stallman <rms@gnu.org>
date Fri, 28 May 1993 21:22:17 +0000
parents e48c0f5e6696
children 1fc792473491
comparison
equal deleted inserted replaced
3218:0069a30d083f 3219:1aa8fa0a569e
434 /* Include the comma after it. */ 434 /* Include the comma after it. */
435 ++breakpos; 435 ++breakpos;
436 } 436 }
437 /* Output that much, then break the line. */ 437 /* Output that much, then break the line. */
438 fwrite (s, 1, breakpos - s, rem->handle); 438 fwrite (s, 1, breakpos - s, rem->handle);
439 fputs ("\n\t", rem->handle);
440 column = 8; 439 column = 8;
441 440
442 /* Skip whitespace and prepare to print more addresses. */ 441 /* Skip whitespace and prepare to print more addresses. */
443 s = breakpos; 442 s = breakpos;
444 while (*s == ' ' || *s == '\t') ++s; 443 while (*s == ' ' || *s == '\t') ++s;
444 if (*s != 0)
445 fputs ("\n\t", rem->handle);
445 } 446 }
446 putc ('\n', rem->handle); 447 putc ('\n', rem->handle);
447 } 448 }
448 return; 449 return;
449 } 450 }