Remove the "for moment" comments
authorTom Tromey <tromey@adacore.com>
Thu, 11 Aug 2022 16:15:36 +0000 (10:15 -0600)
committerTom Tromey <tromey@adacore.com>
Wed, 31 Aug 2022 17:03:40 +0000 (11:03 -0600)
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.

gdb/event-top.c
gdb/main.c
gdb/tui/tui-io.c

index a06221b1b8045bda448cc446ce01586e9da88b4a..a5f24f6a902f9bb1cd7bb911ed3802822cd5977e 100644 (file)
@@ -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
index 8c97987956b7d015eb0de6207bc1e55ddbe19179..91fa1966738d77a42a95a6967c7b8119fb6ea97b 100644 (file)
@@ -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"));
index deea9b90afc4bf3d15f6dfa53a746bedb5477807..51f08168a90ebb98d9b97df78f9cb4c22646a2b9 100644 (file)
@@ -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.  */