summaryrefslogtreecommitdiff
path: root/gdb/command.h
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2010-12-29 02:11:03 +0000
committerMichael Snyder <msnyder@specifix.com>2010-12-29 02:11:03 +0000
commit594f1abf68931a3926d32aeab0e8121457614957 (patch)
tree4e3b1ddebefd1650e990024e0dfea7577eb4cc7b /gdb/command.h
parent142b87ff1070383a6b305aacfb45f5fe5f6a856f (diff)
downloadgdb-594f1abf68931a3926d32aeab0e8121457614957.tar.gz
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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/command.h b/gdb/command.h
index f53dc3e75ca..2dec9a3d6fc 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;