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/symtab.h | |
parent | bbf2f4dfaec5cf2e21b0935300b4921f0b5a8eb7 (diff) | |
download | gdb-78b13106edcd14d87b4cc0b7f8dce8db8c2be489.zip gdb-78b13106edcd14d87b4cc0b7f8dce8db8c2be489.tar.gz gdb-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/symtab.h')
-rw-r--r-- | gdb/symtab.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 30d7eee..5261a69 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1507,9 +1507,6 @@ extern VEC (char_ptr) *default_make_symbol_completion_list (const char *, extern VEC (char_ptr) *make_symbol_completion_list (const char *, const char *); extern VEC (char_ptr) *make_symbol_completion_type (const char *, const char *, enum type_code); -extern VEC (char_ptr) *make_symbol_completion_list_fn (struct cmd_list_element *, - const char *, - const char *); extern VEC (char_ptr) *make_file_symbol_completion_list (const char *, const char *, |