aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2005-04-22 12:49:27 +0000
committerEli Zaretskii <eliz@gnu.org>2005-04-22 12:49:27 +0000
commit24ec834bce370b45adfbeaf230d92f4dac0f15f7 (patch)
tree7f0957483d575baa5ac613880f31abe1bc223b48 /gdb
parent34f3e815d13e0381e4908bf49ca2f0b0b9b3b25b (diff)
downloadfsf-binutils-gdb-24ec834bce370b45adfbeaf230d92f4dac0f15f7.zip
fsf-binutils-gdb-24ec834bce370b45adfbeaf230d92f4dac0f15f7.tar.gz
fsf-binutils-gdb-24ec834bce370b45adfbeaf230d92f4dac0f15f7.tar.bz2
* 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.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog11
-rw-r--r--gdb/remote-mips.c2
-rw-r--r--gdb/remote-sim.c2
-rw-r--r--gdb/remote-st.c2
-rw-r--r--gdb/remote-utils.c2
5 files changed, 15 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e8845b6..05beb2a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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>
* sparc-linux-tdep.c (sparc32_linux_sigframe_init): New function.
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c
index 8c4035b..790b23e 100644
--- a/gdb/remote-mips.c
+++ b/gdb/remote-mips.c
@@ -3416,7 +3416,7 @@ When enabled, monitor warnings about hardware breakpoints will be displayed."),
NULL, /* FIXME: i18n: */
&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)."));
add_setshow_boolean_cmd ("mask-address", no_class, &mask_address_p, _("\
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c
index 5602d0a..b49e9c5 100644
--- a/gdb/remote-sim.c
+++ b/gdb/remote-sim.c
@@ -891,6 +891,6 @@ _initialize_remote_sim (void)
init_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."));
}
diff --git a/gdb/remote-st.c b/gdb/remote-st.c
index 24ae989..e90cbc3 100644
--- a/gdb/remote-st.c
+++ b/gdb/remote-st.c
@@ -796,7 +796,7 @@ _initialize_remote_st2000 (void)
{
init_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."));
add_com ("connect", class_obscure, connect_command, _("\
Connect the terminal directly up to the STDBUG command monitor.\n\
diff --git a/gdb/remote-utils.c b/gdb/remote-utils.c
index 65e4f49..b68ef80 100644
--- a/gdb/remote-utils.c
+++ b/gdb/remote-utils.c
@@ -604,7 +604,7 @@ This device is used as the serial port when debugging using remote targets."),
NULL, /* FIXME: i18n: */
&setlist, &showlist);
- add_com ("remote <command>", class_obscure, sr_com,
+ add_com ("remote", class_obscure, sr_com,
_("Send a command to the remote monitor."));
}