From f29351d98b9834627cc9b77081d7f67fe65d9267 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Sat, 15 Jan 1994 20:14:43 +0000 Subject: [PATCH] * utils.c (fputs_unfiltered): Call fputs, not fputs_maybe_filtered. --- gdb/ChangeLog | 2 ++ gdb/utils.c | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c6190ead29..84ac8d2368 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ Sat Jan 15 10:20:13 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + * utils.c (fputs_unfiltered): Call fputs, not fputs_maybe_filtered. + * c-exp.y (parse_number): Check for overflow regardless of range checking. Fix overflow check to use unsigned LONGEST, not unsigned int. diff --git a/gdb/utils.c b/gdb/utils.c index b15ea74594..08c2353c59 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -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