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/main.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/main.c')
-rw-r--r-- | gdb/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -676,8 +676,8 @@ captured_main_1 (struct captured_main_args *context) main_ui = new ui (stdin, stdout, stderr); current_ui = main_ui; - gdb_stdtargerr = gdb_stderr; /* for moment */ - gdb_stdtargin = gdb_stdin; /* for moment */ + gdb_stdtargerr = gdb_stderr; + gdb_stdtargin = gdb_stdin; if (bfd_init () != BFD_INIT_MAGIC) error (_("fatal error: libbfd ABI mismatch")); |