mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 09:14:14 +08:00
Add more filename styling
I found a few spots where filename styling ought to be applied, but is not.
This commit is contained in:
@ -32,6 +32,7 @@
|
||||
#include "target.h"
|
||||
#include "gdb/fileio.h"
|
||||
#include "inferior.h"
|
||||
#include "cli/cli-style.h"
|
||||
|
||||
/* An object of this type is stored in the section's user data when
|
||||
mapping a section. */
|
||||
@ -1101,7 +1102,8 @@ print_one_bfd (void **slot, void *data)
|
||||
ui_out_emit_tuple tuple_emitter (uiout, NULL);
|
||||
uiout->field_signed ("refcount", gdata->refc);
|
||||
uiout->field_string ("addr", host_address_to_string (abfd));
|
||||
uiout->field_string ("filename", bfd_get_filename (abfd));
|
||||
uiout->field_string ("filename", bfd_get_filename (abfd),
|
||||
file_name_style.style ());
|
||||
uiout->text ("\n");
|
||||
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user