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.c | |
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/completer.c')
-rw-r--r-- | gdb/completer.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/completer.c b/gdb/completer.c index 68e68eb..89cecbc 100644 --- a/gdb/completer.c +++ b/gdb/completer.c @@ -663,6 +663,15 @@ set_gdb_completion_word_break_characters (completer_ftype *fn) set_rl_completer_word_break_characters (break_chars); } +/* Complete on symbols. */ + +VEC (char_ptr) * +symbol_completer (struct cmd_list_element *ignore, + const char *text, const char *word) +{ + return make_symbol_completion_list (text, word); +} + /* Here are some useful test cases for completion. FIXME: These should be put in the test suite. They should be tested with both M-? and TAB. |