diff options
author | Tom Tromey <tromey@adacore.com> | 2022-08-11 10:15:36 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-08-31 11:03:40 -0600 |
commit | 8dc84baf2e0c52828d3aed0dc88a48866d07818b (patch) | |
tree | d0a047e3da0932bb8bb01621822f9a5650851b7d /gdb/tui/tui-io.c | |
parent | 992aeed80b0a6ef1d60ce01df52f3397c3274f35 (diff) | |
download | gdb-8dc84baf2e0c52828d3aed0dc88a48866d07818b.zip gdb-8dc84baf2e0c52828d3aed0dc88a48866d07818b.tar.gz gdb-8dc84baf2e0c52828d3aed0dc88a48866d07818b.tar.bz2 |
Remove the "for moment" comments
A few spots setting some gdb output stream variables have a "for
moment" comment. These comments aren't useful and I think the moment
has passed -- these are permanent now.
Diffstat (limited to 'gdb/tui/tui-io.c')
-rw-r--r-- | gdb/tui/tui-io.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c index deea9b9..51f0816 100644 --- a/gdb/tui/tui-io.c +++ b/gdb/tui/tui-io.c @@ -839,8 +839,8 @@ tui_setup_io (int mode) gdb_stdout = tui_stdout; gdb_stderr = tui_stderr; gdb_stdlog = tui_stdlog; - gdb_stdtarg = gdb_stderr; /* for moment */ - gdb_stdtargerr = gdb_stderr; /* for moment */ + gdb_stdtarg = gdb_stderr; + gdb_stdtargerr = gdb_stderr; current_uiout = tui_out; /* Save tty for SIGCONT. */ @@ -852,8 +852,8 @@ tui_setup_io (int mode) gdb_stdout = tui_old_stdout; gdb_stderr = tui_old_stderr; gdb_stdlog = tui_old_stdlog; - gdb_stdtarg = gdb_stderr; /* for moment */ - gdb_stdtargerr = gdb_stderr; /* for moment */ + gdb_stdtarg = gdb_stderr; + gdb_stdtargerr = gdb_stderr; current_uiout = tui_old_uiout; /* Restore readline. */ |