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:
parent
c34790e0b5
commit
c1380f31bf
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user