Same as last time (putc_unfiltered) only this time having saved the
modified source before checking it in.
This commit is contained in:
parent
346f04146c
commit
753a74d977
1 changed files with 2 additions and 2 deletions
|
@ -744,12 +744,12 @@ hms_wait (pid, status)
|
||||||
|
|
||||||
/* Print out any characters which have been swallowed. */
|
/* Print out any characters which have been swallowed. */
|
||||||
for (p = swallowed; p < swallowed_p; ++p)
|
for (p = swallowed; p < swallowed_p; ++p)
|
||||||
putc_unfiltered (*p, gdb_stdout);
|
putc_unfiltered (*p);
|
||||||
swallowed_p = swallowed;
|
swallowed_p = swallowed;
|
||||||
|
|
||||||
if ((ch != '\r' && ch != '\n') || swallowed_cr > 10)
|
if ((ch != '\r' && ch != '\n') || swallowed_cr > 10)
|
||||||
{
|
{
|
||||||
putc_unfiltered (ch, gdb_stdout);
|
putc_unfiltered (ch);
|
||||||
swallowed_cr = 10;
|
swallowed_cr = 10;
|
||||||
}
|
}
|
||||||
swallowed_cr++;
|
swallowed_cr++;
|
||||||
|
|
Loading…
Add table
Reference in a new issue