1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(put_line): Don't output \n\t unless more text follows.

This commit is contained in:
Richard M. Stallman 1993-05-28 21:22:17 +00:00
parent c34790e0b5
commit c1380f31bf

View File

@ -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);
}