diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-01 15:25:53 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | f4bf8795b382327001cf467b855e5dcd6f30fe5d (patch) | |
tree | 5c45496cfe227633afd8488223c6b3217be58830 /gdb/cli-out.c | |
parent | 3cd5229387926dbd2fe842328e7d923bbb41322c (diff) | |
download | binutils-f4bf8795b382327001cf467b855e5dcd6f30fe5d.zip binutils-f4bf8795b382327001cf467b855e5dcd6f30fe5d.tar.gz binutils-f4bf8795b382327001cf467b855e5dcd6f30fe5d.tar.bz2 |
Remove fputs_styled_unfiltered
fputs_styled_unfiltered is only called from cli_ui_out, so remove it.
This area will be further simplified in future patches.
Diffstat (limited to 'gdb/cli-out.c')
-rw-r--r-- | gdb/cli-out.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gdb/cli-out.c b/gdb/cli-out.c index a7fcc62..f6a5083 100644 --- a/gdb/cli-out.c +++ b/gdb/cli-out.c @@ -171,10 +171,13 @@ cli_ui_out::do_field_string (int fldno, int width, ui_align align, if (string) { + ui_file *stream = m_streams.back (); + stream->emit_style_escape (style); if (test_flags (unfiltered_output)) - fputs_styled_unfiltered (string, style, m_streams.back ()); + stream->puts_unfiltered (string); else - fputs_styled (string, style, m_streams.back ()); + stream->puts (string); + stream->emit_style_escape (ui_file_style ()); } if (after) @@ -233,10 +236,13 @@ cli_ui_out::do_message (const ui_file_style &style, std::string str = string_vprintf (format, args); if (!str.empty ()) { + ui_file *stream = m_streams.back (); + stream->emit_style_escape (style); if (test_flags (unfiltered_output)) - fputs_styled_unfiltered (str.c_str (), style, m_streams.back ()); + stream->puts_unfiltered (str.c_str ()); else - fputs_styled (str.c_str (), style, m_streams.back ()); + stream->puts (str.c_str ()); + stream->emit_style_escape (ui_file_style ()); } } |