diff options
author | Pedro Alves <palves@redhat.com> | 2017-07-17 11:55:42 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2017-07-17 11:55:42 +0100 |
commit | 78b13106edcd14d87b4cc0b7f8dce8db8c2be489 (patch) | |
tree | babbbfb70255849fc190ed67de9846ab4ef4e852 /gdb/completer.h | |
parent | bbf2f4dfaec5cf2e21b0935300b4921f0b5a8eb7 (diff) | |
download | binutils-78b13106edcd14d87b4cc0b7f8dce8db8c2be489.zip binutils-78b13106edcd14d87b4cc0b7f8dce8db8c2be489.tar.gz binutils-78b13106edcd14d87b4cc0b7f8dce8db8c2be489.tar.bz2 |
Rename make_symbol_completion_list_fn -> symbol_completer
"make_symbol_completion_list_fn" is odly named when you look at a list
of "standard" completers, like the Python/Guile completer lists
adjusted by this patch. Rename / move it to completers.h/c, for
consistency.
gdb/ChangeLog:
2017-07-17 Pedro Alves <palves@redhat.com>
* completer.c (symbol_completer): New function, based on
make_symbol_completion_list_fn.
* completer.h (symbol_completer): New declaration.
* guile/scm-cmd.c (cmdscm_completers): Adjust.
* python/py-cmd.c (completers): Adjust.
* symtab.c (make_symbol_completion_list_fn): Delete.
* symtab.h (make_symbol_completion_list_fn): Delete.
* cli/cli-decode.c (add_cmd): Adjust.
Diffstat (limited to 'gdb/completer.h')
-rw-r--r-- | gdb/completer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/completer.h b/gdb/completer.h index 2aa1987..0a40eaa 100644 --- a/gdb/completer.h +++ b/gdb/completer.h @@ -87,6 +87,9 @@ extern VEC (char_ptr) *expression_completer (struct cmd_list_element *, extern VEC (char_ptr) *location_completer (struct cmd_list_element *, const char *, const char *); +extern VEC (char_ptr) *symbol_completer (struct cmd_list_element *, + const char *, const char *); + extern VEC (char_ptr) *command_completer (struct cmd_list_element *, const char *, const char *); |