aboutsummaryrefslogtreecommitdiff
path: root/gdb/command.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-21 17:14:03 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-21 17:14:03 +0000
commitb66df561bb295f7818ba7793ebc22ebb1705e286 (patch)
tree3485f87123070a1b9e6a4c21f3f390a74792174e /gdb/command.h
parente6daada38b3ea8c8e9db27f71716f50dacf17be9 (diff)
downloadbinutils-b66df561bb295f7818ba7793ebc22ebb1705e286.zip
binutils-b66df561bb295f7818ba7793ebc22ebb1705e286.tar.gz
binutils-b66df561bb295f7818ba7793ebc22ebb1705e286.tar.bz2
2005-02-21 Andrew Cagney <cagney@gnu.org>
* command.h (deprecated_add_set_cmd): Rename add_set_cmd. * cli/cli-decode.h (add_set_cmd): Delete declaration. * cli/cli-decode.c (deprecated_add_set_cmd): Rename add_set_cmd. * i386-nat.c (_initialize_i386_nat): Update call. * valprint.c (_initialize_valprint): Update comment. * gnu-nat.c (_initialize_gnu_nat): Update call.
Diffstat (limited to 'gdb/command.h')
-rw-r--r--gdb/command.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/gdb/command.h b/gdb/command.h
index 7e19f43..0729752 100644
--- a/gdb/command.h
+++ b/gdb/command.h
@@ -205,11 +205,15 @@ extern void help_list (struct cmd_list_element *, char *,
extern void help_cmd_list (struct cmd_list_element *, enum command_class,
char *, int, struct ui_file *);
-extern struct cmd_list_element *add_set_cmd (char *name, enum
- command_class class,
- var_types var_type, void *var,
- char *doc,
- struct cmd_list_element **list);
+/* NOTE: cagney/2005-02-21: Since every set command should be paired
+ with a corresponding show command (i.e., add_setshow_*) this call
+ should not be needed. Unfortunatly some are not (e.g.,
+ "maintenance <variable> <value>") and those need to be fixed. */
+extern struct cmd_list_element *deprecated_add_set_cmd (char *name, enum
+ command_class class,
+ var_types var_type, void *var,
+ char *doc,
+ struct cmd_list_element **list);
/* Method for show a set/show variable's VALUE on FILE. If this
method isn't supplied deprecated_show_value_hack() is called (which