diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-24 22:31:53 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-05 11:36:33 -0700 |
commit | b58f47ab4cae11166f210f54bca6e7c58b855a0f (patch) | |
tree | 71a3a29e7574066997f1e5c6ef4df785ad928f98 /gdb/breakpoint.c | |
parent | b68178b9cbbef2aa4e234db4313ac8ba6d1dc04c (diff) | |
download | gdb-b58f47ab4cae11166f210f54bca6e7c58b855a0f.zip gdb-b58f47ab4cae11166f210f54bca6e7c58b855a0f.tar.gz gdb-b58f47ab4cae11166f210f54bca6e7c58b855a0f.tar.bz2 |
Use filtered output in ordinary commands
Many otherwise ordinary commands choose to use unfiltered output
rather than filtered. I don't think there's any reason for this, so
this changes many such commands to use filtered output instead.
Note that complete_command is not touched due to a comment there
explaining why unfiltered output is believed to be used.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index fa99384..c7d7573 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -11535,19 +11535,19 @@ clear_command (const char *arg, int from_tty) if (from_tty) { if (found.size () == 1) - printf_unfiltered (_("Deleted breakpoint ")); + printf_filtered (_("Deleted breakpoint ")); else - printf_unfiltered (_("Deleted breakpoints ")); + printf_filtered (_("Deleted breakpoints ")); } for (breakpoint *iter : found) { if (from_tty) - printf_unfiltered ("%d ", iter->number); + printf_filtered ("%d ", iter->number); delete_breakpoint (iter); } if (from_tty) - putchar_unfiltered ('\n'); + putchar_filtered ('\n'); } /* Delete breakpoint in BS if they are `delete' breakpoints and @@ -14010,7 +14010,7 @@ map_breakpoint_number_range (std::pair<int, int> bp_num_range, break; } if (!match) - printf_unfiltered (_("No breakpoint number %d.\n"), i); + printf_filtered (_("No breakpoint number %d.\n"), i); } } } @@ -14948,7 +14948,7 @@ get_tracepoint_by_number (const char **arg, if (t->number == tpnum) return (struct tracepoint *) t; - printf_unfiltered ("No tracepoint number %d.\n", tpnum); + printf_filtered ("No tracepoint number %d.\n", tpnum); return NULL; } |