diff options
author | Tom Tromey <tromey@redhat.com> | 2014-07-21 20:55:16 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-07-24 11:30:04 -0600 |
commit | 1947513d924efec8b839718cda515ecfc21dd293 (patch) | |
tree | e17abaf26f4b93304057f1b27707392ade406d3e /gdb/cli/cli-decode.h | |
parent | 64e61d290ec53c27767d0d828f01ab6ae95a7478 (diff) | |
download | gdb-1947513d924efec8b839718cda515ecfc21dd293.zip gdb-1947513d924efec8b839718cda515ecfc21dd293.tar.gz gdb-1947513d924efec8b839718cda515ecfc21dd293.tar.bz2 |
constify command docs
This makes the command "doc" parameter const.
2014-07-24 Tom Tromey <tromey@redhat.com>
* cli/cli-decode.c (add_cmd, add_prefix_cmd)
(add_abbrev_prefix_cmd, add_set_or_show_cmd, add_info)
(add_info_alias, add_com): Make "doc" const.
(print_doc_line): Make "str" const.
(delete_cmd): Update.
* cli/cli-decode.h (struct cmd_list_element) <doc>: Now const.
(print_doc_line): Update.
* cli/cli-script.c (document_command): Update.
* command.h (add_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
(add_com, add_info, add_info_alias): Update.
* guile/scm-cmd.c (cmdscm_destroyer): Update.
* python/py-cmd.c (cmdpy_destroyer): Update.
Diffstat (limited to 'gdb/cli/cli-decode.h')
-rw-r--r-- | gdb/cli/cli-decode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-decode.h b/gdb/cli/cli-decode.h index 1ddafd3..865d4a0 100644 --- a/gdb/cli/cli-decode.h +++ b/gdb/cli/cli-decode.h @@ -128,7 +128,7 @@ struct cmd_list_element First line is brief documentation; remaining lines form, with it, the full documentation. First line should end with a period. Entire string should also end with a period, not a newline. */ - char *doc; + const char *doc; /* For set/show commands. A method for printing the output to the specified stream. */ @@ -229,7 +229,7 @@ extern void not_just_help_class_command (char *arg, int from_tty); /* Exported to cli/cli-setshow.c */ -extern void print_doc_line (struct ui_file *, char *); +extern void print_doc_line (struct ui_file *, const char *); extern const char * const auto_boolean_enums[]; |