diff options
author | Tom Tromey <tromey@adacore.com> | 2022-08-16 11:40:15 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-05-17 10:01:13 -0600 |
commit | f2e4bd45d95747128aefc1362129081deeb99d08 (patch) | |
tree | ef30b87f521be5a44c806f0ddf882aceece322c5 /gdb/tui | |
parent | 5c51acfcce1e1ed997e3c2504c2a93a9ad16015e (diff) | |
download | gdb-f2e4bd45d95747128aefc1362129081deeb99d08.zip gdb-f2e4bd45d95747128aefc1362129081deeb99d08.tar.gz gdb-f2e4bd45d95747128aefc1362129081deeb99d08.tar.bz2 |
Remove gdb_stdtargerr
This patch removes gdb_stdtargerr. There doesn't seem to be a need
for this -- it is always the same as stdtarg, and (I believe) has been
for many years.
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-io.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c index 2673397..285c781 100644 --- a/gdb/tui/tui-io.c +++ b/gdb/tui/tui-io.c @@ -839,7 +839,6 @@ tui_setup_io (int mode) gdb_stderr = tui_stderr; gdb_stdlog = tui_stdlog; gdb_stdtarg = gdb_stderr; - gdb_stdtargerr = gdb_stderr; current_uiout = tui_out; /* Save tty for SIGCONT. */ @@ -852,7 +851,6 @@ tui_setup_io (int mode) gdb_stderr = tui_old_stderr; gdb_stdlog = tui_old_stdlog; gdb_stdtarg = gdb_stderr; - gdb_stdtargerr = gdb_stderr; current_uiout = tui_old_uiout; /* Restore readline. */ |