mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-26 07:19:16 +08:00
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.
This commit is contained in:
@ -2195,8 +2195,8 @@ tfind_1 (enum trace_find_type type, int num,
|
||||
}
|
||||
else
|
||||
{
|
||||
printf_unfiltered (_("Found trace frame %d, tracepoint %d\n"),
|
||||
traceframe_number, tracepoint_number);
|
||||
printf_filtered (_("Found trace frame %d, tracepoint %d\n"),
|
||||
traceframe_number, tracepoint_number);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2204,9 +2204,9 @@ tfind_1 (enum trace_find_type type, int num,
|
||||
if (uiout->is_mi_like_p ())
|
||||
uiout->field_string ("found", "0");
|
||||
else if (type == tfind_number && num == -1)
|
||||
printf_unfiltered (_("No longer looking at any trace frame\n"));
|
||||
printf_filtered (_("No longer looking at any trace frame\n"));
|
||||
else /* This case may never occur, check. */
|
||||
printf_unfiltered (_("No trace frame found\n"));
|
||||
printf_filtered (_("No trace frame found\n"));
|
||||
}
|
||||
|
||||
/* If we're in nonstop mode and getting out of looking at trace
|
||||
|
Reference in New Issue
Block a user