Reduce explicit use of gdb_stdout
authorTom Tromey <tom@tromey.com>
Fri, 31 Dec 2021 00:31:41 +0000 (17:31 -0700)
committerTom Tromey <tom@tromey.com>
Tue, 25 Jan 2022 22:22:49 +0000 (15:22 -0700)
commitd4396e0e97d21ad766089748fde1e11257384c49
treed688f73ec95568444a01a01f2c85474e3db3c9db
parent244ac24b51ba1375794eed93b58d5813e7c044ca
Reduce explicit use of gdb_stdout

In an earlier version of the pager rewrite series, it was important to
audit unfiltered output calls to see which were truly necessary.

This is no longer necessary, but it still seems like a decent cleanup
to change calls to avoid explicitly passing gdb_stdout.  That is,
rather than using something like fprintf_unfiltered with gdb_stdout,
the code ought to use plain printf_unfiltered instead.

This patch makes this change.  I went ahead and converted all the
_filtered calls I could find, as well, for the same clarity.
20 files changed:
gdb/breakpoint.c
gdb/event-top.c
gdb/fbsd-nat.c
gdb/gcore.c
gdb/guile/scm-param.c
gdb/infcmd.c
gdb/linux-fork.c
gdb/m2-lang.c
gdb/macrocmd.c
gdb/netbsd-nat.c
gdb/printcmd.c
gdb/psymtab.c
gdb/python/py-param.c
gdb/stack.c
gdb/symfile.c
gdb/top.c
gdb/tracepoint.c
gdb/typeprint.c
gdb/unittests/command-def-selftests.c
gdb/utils.c