diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-12-29 02:11:04 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-12-29 02:11:04 +0000 |
commit | ebcd3b23ee08bb41a5492dce554c810eb59f895d (patch) | |
tree | 0f968b9cd53b78a3cb7c2674e91cc901aef7db23 /gdb/command.h | |
parent | 3458c4521e012446279ea868e54757247940a16c (diff) | |
download | gdb-ebcd3b23ee08bb41a5492dce554c810eb59f895d.zip gdb-ebcd3b23ee08bb41a5492dce554c810eb59f895d.tar.gz gdb-ebcd3b23ee08bb41a5492dce554c810eb59f895d.tar.bz2 |
2010-12-28 Michael Snyder <msnyder@vmware.com>
* command.h: Comment clean-up.
* cli/cli-cmds.c: Ditto.
* cli/cli-cmds.h: Ditto.
* cli/cli-decode.c: Ditto.
* cli/cli-decode.h: Ditto.
* cli/cli-dump.c: Ditto.
* cli/cli-interp.c: Ditto.
* cli/cli-logging.c: Ditto.
* cli/cli-script.c: Ditto.
* cli/cli-setshow.c: Ditto.
* cli/cli-setshow.h: Ditto.
Diffstat (limited to 'gdb/command.h')
-rw-r--r-- | gdb/command.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/command.h b/gdb/command.h index f53dc3e..2dec9a3 100644 --- a/gdb/command.h +++ b/gdb/command.h @@ -20,7 +20,7 @@ #define COMMAND_H 1 /* Command classes are top-level categories into which commands are broken - down for "help" purposes. + down for "help" purposes. Notes on classes: class_alias is for alias commands which are not abbreviations of the original command. class-pseudo is for commands which are not really commands nor help topics ("stop"). */ @@ -60,7 +60,7 @@ typedef enum var_types "auto. *VAR is an ``enum auto_boolean''. NOTE: In general a custom show command will need to be implemented - one that for "auto" prints both the "auto" and the current auto-selected - value. */ + value. */ var_auto_boolean, /* Unsigned Integer. *VAR is an unsigned int. The user can type 0 @@ -146,7 +146,7 @@ extern void set_cmd_completer (struct cmd_list_element *cmd, extern int cmd_cfunc_eq (struct cmd_list_element *cmd, void (*cfunc) (char *args, int from_tty)); -/* Each command object has a local context attached to it. . */ +/* Each command object has a local context attached to it. */ extern void set_cmd_context (struct cmd_list_element *cmd, void *context); extern void *get_cmd_context (struct cmd_list_element *cmd); @@ -342,7 +342,7 @@ extern void add_setshow_zuinteger_cmd (char *name, extern void cmd_show_list (struct cmd_list_element *, int, char *); /* Used everywhere whenever at least one parameter is required and - none is specified. */ + none is specified. */ extern void error_no_arg (char *) ATTRIBUTE_NORETURN; |