prevent the "load" command from repeating
authorJoel Brobecker <brobecker@gnat.com>
Mon, 3 Jan 2011 07:53:06 +0000 (07:53 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 3 Jan 2011 07:53:06 +0000 (07:53 +0000)
This makes sure that the `load' command does not repeat when the user
presses Return again, as documented in the GDB User's Manual.

gdb/ChangeLog:

        * symfile.c (find_sym_fns): Add call to dont_repeat.

gdb/ChangeLog
gdb/symfile.c

index 6d984d2c1a5a9a094aa1d9e81d7e2b24d2ae6943..08b2b096dc59ea15a4900b5a5a6349372fb28afc 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-03  Joel Brobecker  <brobecker@adacore.com>
+
+       * symfile.c (find_sym_fns): Add call to dont_repeat.
+
 2011-01-01  Joel Brobecker  <brobecker@adacore.com>
 
        Copyright year update in most files (performed by copyright.sh).
index d33318989b12435d9d9967e28fb86a9e76911494..260aff39a9f5a97221d3aa4c9a08c844ff499843 100644 (file)
@@ -1742,6 +1742,8 @@ find_sym_fns (bfd *abfd)
 static void
 load_command (char *arg, int from_tty)
 {
+  dont_repeat ();
+
   /* The user might be reloading because the binary has changed.  Take
      this opportunity to check.  */
   reopen_exec_file ();