* utils.c (fputs_unfiltered): Call fputs, not fputs_maybe_filtered.

This commit is contained in:
Jim Kingdon
1994-01-15 20:14:43 +00:00
parent bb1f42d4f0
commit f29351d98b
2 changed files with 13 additions and 0 deletions

View File

@@ -1259,7 +1259,18 @@ fputs_unfiltered (linebuffer, stream)
const char *linebuffer;
FILE *stream;
{
#if 0
/* This gets the wrap_buffer buffering wrong when called from
gdb_readline (GDB was sometimes failing to print the prompt
before reading input). Even at other times, it seems kind of
misguided, especially now that printf_unfiltered doesn't use
printf_maybe_filtered. */
fputs_maybe_filtered (linebuffer, stream, 0);
#else
fputs (linebuffer, stream);
#endif
}
void