diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:46:15 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | 6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a (patch) | |
tree | 641a6a86240919fe4ba9219fbbbe15bc6331c22d /gdb/gdb-demangle.c | |
parent | a11ac3b3e8ff6769badcf0041894f6c5acc1b94f (diff) | |
download | binutils-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.zip binutils-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.tar.gz binutils-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.tar.bz2 |
Unify gdb printf functions
Now that filtered and unfiltered output can be treated identically, we
can unify the printf family of functions. This is done under the name
"gdb_printf". Most of this patch was written by script.
Diffstat (limited to 'gdb/gdb-demangle.c')
-rw-r--r-- | gdb/gdb-demangle.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gdb/gdb-demangle.c b/gdb/gdb-demangle.c index 975ad43..3db979c 100644 --- a/gdb/gdb-demangle.c +++ b/gdb/gdb-demangle.c @@ -50,10 +50,10 @@ static void show_demangle (struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { - fprintf_filtered (file, - _("Demangling of encoded C++/ObjC names " - "when displaying symbols is %s.\n"), - value); + gdb_printf (file, + _("Demangling of encoded C++/ObjC names " + "when displaying symbols is %s.\n"), + value); } /* See documentation in gdb-demangle.h. */ @@ -63,10 +63,10 @@ static void show_asm_demangle (struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { - fprintf_filtered (file, - _("Demangling of C++/ObjC names in " - "disassembly listings is %s.\n"), - value); + gdb_printf (file, + _("Demangling of C++/ObjC names in " + "disassembly listings is %s.\n"), + value); } /* String name for the current demangling style. Set by the @@ -83,8 +83,8 @@ static void show_demangling_style_names(struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { - fprintf_filtered (file, _("The current C++ demangling style is \"%s\".\n"), - value); + gdb_printf (file, _("The current C++ demangling style is \"%s\".\n"), + value); } /* Set current demangling style. Called by the "set demangle-style" @@ -204,7 +204,7 @@ demangle_command (const char *args, int from_tty) gdb::unique_xmalloc_ptr<char> demangled = language_demangle (lang, name, DMGL_ANSI | DMGL_PARAMS); if (demangled != NULL) - printf_filtered ("%s\n", demangled.get ()); + gdb_printf ("%s\n", demangled.get ()); else error (_("Can't demangle \"%s\""), name); } |