diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-06-11 16:05:25 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-06-11 16:05:25 +0000 |
commit | c94fdfd0a8821bf0bfa3518f5f65b58f1aa629c2 (patch) | |
tree | f35d443db6e865ab5deace1055b78f820bad39fc /gdb/symtab.h | |
parent | 6439fc285d589cd53d00e1eb105f060ec406f4d6 (diff) | |
download | gdb-c94fdfd0a8821bf0bfa3518f5f65b58f1aa629c2.zip gdb-c94fdfd0a8821bf0bfa3518f5f65b58f1aa629c2.tar.gz gdb-c94fdfd0a8821bf0bfa3518f5f65b58f1aa629c2.tar.bz2 |
* completer.c (gdb_completer_loc_break_characters): New variable.
(line_completion_function): If we are completing on locations,
back up the start of word pointer past all characters which can
appear in a location spec.
(location_completer): New function.
* completer.h: Add prototype for location_completer.
* symtab.c (make_source_files_completion_list)
(add_filename_to_list, not_interesting_fname): New functions.
(filename_seen): New function, body extracted from
output_source_filename.
(output_source_filename): Call filename_seen to check if the file
was already printed.
(make_symbol_completion_list): If TEXT includes a
double-quoted string, return an empty list, not NULL.
(make_file_symbol_completion_list): New function, similar to
make_symbol_completion_list but with an additional argument
SRCFILE.
* symtab.h (make_file_symbol_completion_list)
(make_source_files_completion_list): Add prototypes.
* breakpoint.c (_initialize_breakpoint): Make location_completer
be the completion function for all commands which set breakpoints
and watchpoints.
(top-level): #include "completer.h".
* tracepoint.c (_initialize_tracepoint): Make location_completer
be the completion function for the "trace" command.
(top-level): #include "completer.h".
* printcmd.c (_initialize_printcmd): Make location_completer be
the completion function for the "print", "inspect", "call", and
"disassemble" commands.
(top-level): #include "completer.h".
* infcmd.c (_initialize_infcmd): Make location_completer be the
completion function for the "go", "jump", and "until" commands.
(top-level): #include "completer.h".
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index bbde658..f760628 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1359,8 +1359,12 @@ extern void select_source_symtab (struct symtab *); extern char **make_symbol_completion_list (char *, char *); +extern char **make_file_symbol_completion_list (char *, char *, char *); + extern struct symbol **make_symbol_overload_list (struct symbol *); +extern char **make_source_files_completion_list (char *, char *); + /* symtab.c */ extern struct partial_symtab *find_main_psymtab (void); |