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/guile | |
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/guile')
-rw-r--r-- | gdb/guile/scm-cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/guile/scm-cmd.c b/gdb/guile/scm-cmd.c index 7b8e3a5..54bed2c 100644 --- a/gdb/guile/scm-cmd.c +++ b/gdb/guile/scm-cmd.c @@ -290,7 +290,7 @@ cmdscm_destroyer (struct cmd_list_element *self, void *context) /* We allocated the name, doc string, and perhaps the prefix name. */ xfree ((char *) self->name); - xfree (self->doc); + xfree ((char *) self->doc); xfree ((char *) self->prefixname); } |