+2020-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
+ Tom Tromey <tom@tromey.com>
+
+ * utils.c (fputs_maybe_filtered): Call 'stream->puts' instead
+ of 'fputc_unfiltered'.
+ (putchar_unfiltered): Call 'fputc_unfiltered'.
+ (fputc_unfiltered): Call 'fputs_unfiltered'.
+
2020-02-20 Andrew Burgess <andrew.burgess@embecosm.com>
* config.in: Regenerate.
newline -- if chars_per_line is right, we
probably just overflowed anyway; if it's wrong,
let us keep going. */
- fputc_unfiltered ('\n', stream);
+ /* XXX: The ideal thing would be to call
+ 'stream->putc' here, but we can't because it
+ currently calls 'fputc_unfiltered', which ends up
+ calling us, which generates an infinite
+ recursion. */
+ stream->puts ("\n");
}
else
{
wrap_here ((char *) 0); /* Spit out chars, cancel
further wraps. */
lines_printed++;
- fputc_unfiltered ('\n', stream);
+ /* XXX: The ideal thing would be to call
+ 'stream->putc' here, but we can't because it
+ currently calls 'fputc_unfiltered', which ends up
+ calling us, which generates an infinite
+ recursion. */
+ stream->puts ("\n");
lineptr++;
}
}
int
putchar_unfiltered (int c)
{
- char buf = c;
-
- gdb_stdout->write (&buf, 1);
- return c;
+ return fputc_unfiltered (c, gdb_stdout);
}
/* Write character C to gdb_stdout using GDB's paging mechanism and return C.
int
fputc_unfiltered (int c, struct ui_file *stream)
{
- char buf = c;
+ char buf[2];
- stream->write (&buf, 1);
+ buf[0] = c;
+ buf[1] = 0;
+ fputs_unfiltered (buf, stream);
return c;
}