summaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-01-01 15:25:53 -0700
committerTom Tromey <tom@tromey.com>2022-03-29 12:46:24 -0600
commitf4bf8795b382327001cf467b855e5dcd6f30fe5d (patch)
tree5c45496cfe227633afd8488223c6b3217be58830 /gdb/utils.c
parent3cd5229387926dbd2fe842328e7d923bbb41322c (diff)
downloadbinutils-gdb-f4bf8795b382327001cf467b855e5dcd6f30fe5d.tar.gz
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/utils.c')
-rw-r--r--gdb/utils.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index 70b266019ca..a86d2c4d386 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -1763,17 +1763,6 @@ fputs_styled (const char *linebuffer, const ui_file_style &style,
/* See utils.h. */
void
-fputs_styled_unfiltered (const char *linebuffer, const ui_file_style &style,
- struct ui_file *stream)
-{
- stream->emit_style_escape (style);
- stream->puts_unfiltered (linebuffer);
- stream->emit_style_escape (ui_file_style ());
-}
-
-/* See utils.h. */
-
-void
fputs_highlighted (const char *str, const compiled_regex &highlight,
struct ui_file *stream)
{