diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-10-06 22:41:17 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2003-10-06 22:41:17 +0000 |
commit | c8b33eea10b94ac396a1843f705c249c71a5e3d7 (patch) | |
tree | d1fafd27cae704a462547b012aa5a453398fc7ca /gdb/Makefile.in | |
parent | 4cd9a1be6be6600df1edf0c3969ca41c06ad989a (diff) | |
download | gdb-c8b33eea10b94ac396a1843f705c249c71a5e3d7.tar.gz |
* completer.h (get_gdb_completer_word_break_characters): Delete.
* completer.c: include language.h.
(gdb_completer_word_break_characters): Delete.
(get_gdb_completer_word_break_characters): Delete.
(location_completer): Use the word break characters of the current
language.
(complete_line): Likewise.
(line_completion_function): Likewise.
(skip_quoted_chars): Likewise.
* Makefile.in (completer.o): Add dependency on language.h.
* top.c (init_main): Set the readline word break characters
to GDB's default word break characters.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index d3cfd8c210e..cdbb92a159e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1631,7 +1631,8 @@ coff-solib.o: coff-solib.c $(defs_h) $(frame_h) $(bfd_h) $(gdbcore_h) \ complaints.o: complaints.c $(defs_h) $(complaints_h) $(gdb_assert_h) \ $(command_h) $(gdbcmd_h) completer.o: completer.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ - $(filenames_h) $(cli_decode_h) $(gdbcmd_h) $(completer_h) + $(filenames_h) $(cli_decode_h) $(gdbcmd_h) $(completer_h) \ + $(language_h) copying.o: copying.c $(defs_h) $(command_h) $(gdbcmd_h) core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(regcache_h) \ $(gdb_dirent_h) $(gdb_stat_h) |