diff options
author | Pierre Muller <muller@sourceware.org> | 2009-03-25 10:50:57 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2009-03-25 10:50:57 +0000 |
commit | 67c296a2d728a49ac5c587b816dab1c895c149e5 (patch) | |
tree | f4bc407bc726fdfd0df1fbdfd153df48a3994072 /gdb/top.c | |
parent | 1a6d2f2ff64b0e66af70b192e4e228a0ef55e443 (diff) | |
download | gdb-67c296a2d728a49ac5c587b816dab1c895c149e5.zip gdb-67c296a2d728a49ac5c587b816dab1c895c149e5.tar.gz gdb-67c296a2d728a49ac5c587b816dab1c895c149e5.tar.bz2 |
Fix completer problem for filename completion on the first try.
* gdb/completer.h (gdb_completion_word_break_characters): New function.
* gdb/completer.c: Include gdb_assert.h.
(complete_line_internal_reason): New enum.
(complete_line_internal): Change last argument type to
complete_line_internal_reason.
Modify function to handle the different complete_line_internal_reason
argument values.
(complete_line): Adapt to change in complete_line_internal.
(command_completer): Ditto.
(gdb_completion_word_break_characters): Implement new function.
* top.c (init_main): Set rl_completion_word_break_hook to
gdb_completion_word_break_characters.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1543,6 +1543,7 @@ init_main (void) write_history_p = 0; /* Setup important stuff for command line editing. */ + rl_completion_word_break_hook = gdb_completion_word_break_characters; rl_completion_entry_function = readline_line_completion_function; rl_completer_word_break_characters = default_word_break_characters (); rl_completer_quote_characters = get_gdb_completer_quote_characters (); |