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/python/python.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/python/python.c')
-rw-r--r-- | gdb/python/python.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index f0d788b..7a9c8c1 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1413,16 +1413,16 @@ gdbpy_write (PyObject *self, PyObject *args, PyObject *kw) { case 1: { - fprintf_filtered (gdb_stderr, "%s", arg); + gdb_printf (gdb_stderr, "%s", arg); break; } case 2: { - fprintf_filtered (gdb_stdlog, "%s", arg); + gdb_printf (gdb_stdlog, "%s", arg); break; } default: - fprintf_filtered (gdb_stdout, "%s", arg); + gdb_printf (gdb_stdout, "%s", arg); } } catch (const gdb_exception &except) @@ -1493,7 +1493,7 @@ gdbpy_print_stack (void) PyErr_Print (); /* PyErr_Print doesn't necessarily end output with a newline. This works because Python's stdout/stderr is fed through - printf_filtered. */ + gdb_printf. */ try { begin_line (); @@ -1520,14 +1520,14 @@ gdbpy_print_stack (void) { /* An error occurred computing the string representation of the error message. */ - fprintf_filtered (gdb_stderr, - _("Error occurred computing Python error" \ - "message.\n")); + gdb_printf (gdb_stderr, + _("Error occurred computing Python error" \ + "message.\n")); PyErr_Clear (); } else - fprintf_filtered (gdb_stderr, "Python Exception %s: %s\n", - type.get (), msg.get ()); + gdb_printf (gdb_stderr, "Python Exception %s: %s\n", + type.get (), msg.get ()); } catch (const gdb_exception &except) { @@ -1796,8 +1796,8 @@ static void show_python_ignore_environment (struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { - fprintf_filtered (file, _("Python's ignore-environment setting is %s.\n"), - value); + gdb_printf (file, _("Python's ignore-environment setting is %s.\n"), + value); } /* Implement 'set python ignore-environment'. This sets Python's internal @@ -1830,13 +1830,13 @@ show_python_dont_write_bytecode (struct ui_file *file, int from_tty, = (python_ignore_environment || getenv ("PYTHONDONTWRITEBYTECODE") == nullptr) ? "off" : "on"; - fprintf_filtered (file, - _("Python's dont-write-bytecode setting is %s (currently %s).\n"), - value, auto_string); + gdb_printf (file, + _("Python's dont-write-bytecode setting is %s (currently %s).\n"), + value, auto_string); } else - fprintf_filtered (file, _("Python's dont-write-bytecode setting is %s.\n"), - value); + gdb_printf (file, _("Python's dont-write-bytecode setting is %s.\n"), + value); } /* Implement 'set python dont-write-bytecode'. This sets Python's internal |