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/event-top.c | |
parent | 992aeed80b0a6ef1d60ce01df52f3397c3274f35 (diff) | |
download | fsf-binutils-gdb-8dc84baf2e0c52828d3aed0dc88a48866d07818b.zip fsf-binutils-gdb-8dc84baf2e0c52828d3aed0dc88a48866d07818b.tar.gz fsf-binutils-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/event-top.c')
-rw-r--r-- | gdb/event-top.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index a06221b..a5f24f6 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -1338,8 +1338,8 @@ gdb_setup_readline (int editing) gdb_stdout = new pager_file (new stdio_file (ui->outstream)); gdb_stderr = new stderr_file (ui->errstream); gdb_stdlog = new timestamped_file (gdb_stderr); - gdb_stdtarg = gdb_stderr; /* for moment */ - gdb_stdtargerr = gdb_stderr; /* for moment */ + gdb_stdtarg = gdb_stderr; + gdb_stdtargerr = gdb_stderr; /* If the input stream is connected to a terminal, turn on editing. However, that is only allowed on the main UI, as we can only have |