Same as last time (putc_unfiltered) only this time having saved the

modified source before checking it in.
This commit is contained in:
Thomas Lord 1993-11-09 21:29:50 +00:00
parent 346f04146c
commit 753a74d977

View File

@ -744,12 +744,12 @@ hms_wait (pid, status)
/* Print out any characters which have been swallowed. */
for (p = swallowed; p < swallowed_p; ++p)
putc_unfiltered (*p, gdb_stdout);
putc_unfiltered (*p);
swallowed_p = swallowed;
if ((ch != '\r' && ch != '\n') || swallowed_cr > 10)
{
putc_unfiltered (ch, gdb_stdout);
putc_unfiltered (ch);
swallowed_cr = 10;
}
swallowed_cr++;