diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-21 06:21:09 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-21 06:21:09 +0000 |
commit | 4d28ad1ecec979990f27959564de1657f055b97b (patch) | |
tree | 9a0c52363a45c375fc1197d3b6689513b50abde9 /gdb/ocd.c | |
parent | 7ab044018aac127cb2867aadf8faa4a3a2e46142 (diff) | |
download | binutils-gdb-4d28ad1ecec979990f27959564de1657f055b97b.tar.gz |
2005-02-21 Andrew Cagney <cagney@gnu.org>
Add more uses of add_setshow_string_cmd, add_setshow_integer_cmd,
and add_setshow_string_noescape_cmd.
* cli/cli-setshow.c (deprecated_show_value_hack): Do not print a
NULL command's value.
* kod.c, language.c, ocd.c, remote-e7000.c, remote-mips.c: Update.
* remote-sds.c, remote.c, symfile.c, top.c: Update.
Diffstat (limited to 'gdb/ocd.c')
-rw-r--r-- | gdb/ocd.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/ocd.c b/gdb/ocd.c index c46ec0c0bf1..43fe35fc0bb 100644 --- a/gdb/ocd.c +++ b/gdb/ocd.c @@ -1156,11 +1156,12 @@ _initialize_remote_ocd (void) extern struct cmd_list_element *cmdlist; static struct cmd_list_element *ocd_cmd_list = NULL; - deprecated_add_show_from_set - (add_set_cmd ("remotetimeout", no_class, - var_integer, (char *) &remote_timeout, - "Set timeout value for remote read.\n", &setlist), - &showlist); + add_setshow_integer_cmd ("remotetimeout", no_class, &remote_timeout, _("\ +Set timeout value for remote read."), _("\ +Show timeout value for remote read."), NULL, + NULL, + NULL, /* FIXME: i18n: */ + &setlist, &showlist); /* FIXME: i18n: What documentation? */ add_prefix_cmd ("ocd", class_obscure, bdm_command, (""), &ocd_cmd_list, |