* remote-st.c (_initialize_remote_st2000): Remove the extraneous

"<command>" string from the call to add_com.
	* remote-sim.c (_initialize_remote_sim): Ditto.
	* remote-utils.c (_initialize_sr_support): Ditto.
	* remote-mips.c (_initialize_remote_mips): Ditto.
This commit is contained in:
Eli Zaretskii 2005-04-22 12:49:27 +00:00
parent 34f3e815d1
commit 24ec834bce
5 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,14 @@
2005-04-22 Eli Zaretskii <eliz@gnu.org>
* remote-st.c (_initialize_remote_st2000): Remove the extraneous
"<command>" string from the call to add_com.
* remote-sim.c (_initialize_remote_sim): Ditto.
* remote-utils.c (_initialize_sr_support): Ditto.
* remote-mips.c (_initialize_remote_mips): Ditto.
2005-04-21 David S. Miller <davem@davemloft.net> 2005-04-21 David S. Miller <davem@davemloft.net>
* sparc-linux-tdep.c (sparc32_linux_sigframe_init): New function. * sparc-linux-tdep.c (sparc32_linux_sigframe_init): New function.

View file

@ -3416,7 +3416,7 @@ When enabled, monitor warnings about hardware breakpoints will be displayed."),
NULL, /* FIXME: i18n: */ NULL, /* FIXME: i18n: */
&setlist, &showlist); &setlist, &showlist);
add_com ("pmon <command>", class_obscure, pmon_command, add_com ("pmon", class_obscure, pmon_command,
_("Send a packet to PMON (must be in debug mode).")); _("Send a packet to PMON (must be in debug mode)."));
add_setshow_boolean_cmd ("mask-address", no_class, &mask_address_p, _("\ add_setshow_boolean_cmd ("mask-address", no_class, &mask_address_p, _("\

View file

@ -891,6 +891,6 @@ _initialize_remote_sim (void)
init_gdbsim_ops (); init_gdbsim_ops ();
add_target (&gdbsim_ops); add_target (&gdbsim_ops);
add_com ("sim <command>", class_obscure, simulator_command, add_com ("sim", class_obscure, simulator_command,
_("Send a command to the simulator.")); _("Send a command to the simulator."));
} }

View file

@ -796,7 +796,7 @@ _initialize_remote_st2000 (void)
{ {
init_st2000_ops (); init_st2000_ops ();
add_target (&st2000_ops); add_target (&st2000_ops);
add_com ("st2000 <command>", class_obscure, st2000_command, add_com ("st2000", class_obscure, st2000_command,
_("Send a command to the STDBUG monitor.")); _("Send a command to the STDBUG monitor."));
add_com ("connect", class_obscure, connect_command, _("\ add_com ("connect", class_obscure, connect_command, _("\
Connect the terminal directly up to the STDBUG command monitor.\n\ Connect the terminal directly up to the STDBUG command monitor.\n\

View file

@ -604,7 +604,7 @@ This device is used as the serial port when debugging using remote targets."),
NULL, /* FIXME: i18n: */ NULL, /* FIXME: i18n: */
&setlist, &showlist); &setlist, &showlist);
add_com ("remote <command>", class_obscure, sr_com, add_com ("remote", class_obscure, sr_com,
_("Send a command to the remote monitor.")); _("Send a command to the remote monitor."));
} }