aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli-out.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-01-02 13:08:45 -0700
committerTom Tromey <tom@tromey.com>2022-03-29 12:46:25 -0600
commit7e9e74b6a8ac919227fc4432e01745217665762b (patch)
tree506c6fb2540ba78b522164a4ea81a80616b815a7 /gdb/cli-out.c
parentbed009b9d8601de825ac848c543ee9853628940d (diff)
downloadbinutils-7e9e74b6a8ac919227fc4432e01745217665762b.zip
binutils-7e9e74b6a8ac919227fc4432e01745217665762b.tar.gz
binutils-7e9e74b6a8ac919227fc4432e01745217665762b.tar.bz2
Remove ui_out_flag::unfiltered_output
There is no longer any need for ui_out_flag::unfiltered_output -- nothing ever sets this flag. This used to be needed to make the _unfiltered output work, but now only printf_unfiltered can be used, and it uses the puts_unfiltered method. This patch removes the flag and the dead code.
Diffstat (limited to 'gdb/cli-out.c')
-rw-r--r--gdb/cli-out.c25
1 files changed, 5 insertions, 20 deletions
diff --git a/gdb/cli-out.c b/gdb/cli-out.c
index 39279d9..e0802df 100644
--- a/gdb/cli-out.c
+++ b/gdb/cli-out.c
@@ -173,10 +173,7 @@ cli_ui_out::do_field_string (int fldno, int width, ui_align align,
{
ui_file *stream = m_streams.back ();
stream->emit_style_escape (style);
- if (test_flags (unfiltered_output))
- stream->puts_unfiltered (string);
- else
- stream->puts (string);
+ stream->puts (string);
stream->emit_style_escape (ui_file_style ());
}
@@ -208,10 +205,7 @@ cli_ui_out::do_spaces (int numspaces)
if (m_suppress_output)
return;
- if (test_flags (unfiltered_output))
- gdb_printf (m_streams.back (), "%*s", numspaces, "");
- else
- print_spaces (numspaces, m_streams.back ());
+ print_spaces (numspaces, m_streams.back ());
}
void
@@ -220,10 +214,7 @@ cli_ui_out::do_text (const char *string)
if (m_suppress_output)
return;
- if (test_flags (unfiltered_output))
- gdb_puts (string, m_streams.back ());
- else
- gdb_puts (string, m_streams.back ());
+ gdb_puts (string, m_streams.back ());
}
void
@@ -238,10 +229,7 @@ cli_ui_out::do_message (const ui_file_style &style,
{
ui_file *stream = m_streams.back ();
stream->emit_style_escape (style);
- if (test_flags (unfiltered_output))
- stream->puts_unfiltered (str.c_str ());
- else
- stream->puts (str.c_str ());
+ stream->puts (str.c_str ());
stream->emit_style_escape (ui_file_style ());
}
}
@@ -380,10 +368,7 @@ cli_ui_out::do_progress_end ()
void
cli_ui_out::field_separator ()
{
- if (test_flags (unfiltered_output))
- gdb_putc (' ', m_streams.back ());
- else
- gdb_putc (' ', m_streams.back ());
+ gdb_putc (' ', m_streams.back ());
}
/* Constructor for cli_ui_out. */