From 0bb296cb5f3a81b4b5e702208aad911d3b727f8b Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 5 Sep 2018 23:32:16 -0600 Subject: Style locations when setting a breakpoint say_where does not use ui-out, so function and file names printed by it were not styled. This patch changes say_where to use the low-level style code directly. gdb/ChangeLog 2018-12-28 Tom Tromey * breakpoint.c (say_where): Style file name. gdb/testsuite/ChangeLog 2018-12-28 Tom Tromey * gdb.base/style.exp: Add test for breakpoint setting. --- gdb/breakpoint.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'gdb/breakpoint.c') diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 53763e0254c..b99b0fb27c9 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -68,6 +68,7 @@ #include "format.h" #include "thread-fsm.h" #include "tid-parse.h" +#include "cli/cli-style.h" /* readline include files */ #include "readline/readline.h" @@ -12195,9 +12196,14 @@ say_where (struct breakpoint *b) /* If there is a single location, we can print the location more nicely. */ if (b->loc->next == NULL) - printf_filtered (": file %s, line %d.", - symtab_to_filename_for_display (b->loc->symtab), - b->loc->line_number); + { + puts_filtered (": file "); + fputs_styled (symtab_to_filename_for_display (b->loc->symtab), + file_name_style.style (), + gdb_stdout); + printf_filtered (", line %d.", + b->loc->line_number); + } else /* This is not ideal, but each location may have a different file name, and this at least reflects the -- cgit v1.2.1