mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(put_line): Don't output \n\t unless more text follows.
This commit is contained in:
parent
c34790e0b5
commit
c1380f31bf
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue