diff options
author | Pedro Alves <palves@redhat.com> | 2011-09-06 14:49:00 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-09-06 14:49:00 +0000 |
commit | ab821bc6473fe7fa3982d77a837cd5913a35d6f2 (patch) | |
tree | e0a4fe3cd8df39b8a352564cdb750b179a3426bc /gdb/python | |
parent | b140b0101b2641e96c39ce022cd79fe7db3b7322 (diff) | |
download | fsf-binutils-gdb-ab821bc6473fe7fa3982d77a837cd5913a35d6f2.zip fsf-binutils-gdb-ab821bc6473fe7fa3982d77a837cd5913a35d6f2.tar.gz fsf-binutils-gdb-ab821bc6473fe7fa3982d77a837cd5913a35d6f2.tar.bz2 |
2011-09-06 Pedro Alves <pedro@codesourcery.com>
* event-top.h (MAXPROMPTS, struct prompts): Delete.
(set_async_annotation_level, set_async_prompt, pop_prompt)
(push_prompt, new_async_prompt): Delete declarations.
* top.h (get_prompt, set_prompt): Change prototype.
(get_prefix, set_prefix, get_suffix, set_suffix): Delete
declarations.
* top.c (command_loop):
(top_prompt): New global.
(get_prefix, set_prefix, get_suffix, ): Delete.
(get_prompt, set_prompt): Rewrite.
(show_new_async_prompt): Rename to ...
(show_prompt): ... this.
(init_main): Adjust. Don't handle --annotate=2 here.
* event-top.c (new_async_prompt): Delete.
(the_prompts): Delete.
(more_to_come): Make static.
(display_gdb_prompt): Use top_level_prompt() to compute the top
level prompt, and don't notify the before_prompt observers
directly here. Always trick readline into not trying to display
the prompt if sync_execution and displaying the primary prompt.
If displaying a local/secondary prompt, always show it, even if
sync_execution is set.
(change_annotation_level): Delete.
(top_level_prompt): New, based on change_annotation_level.
(push_prompt, pop_prompt): Delete.
(async_disable_stdin): No longer pushes prompt.
(command_line_handler): No longer pushes or pops prompt. If more
input is expected, call display_gdb_prompt with an explicit empty
prompt.
(async_stop_sig): Adjust.
(set_async_annotation_level, set_async_prompt): Delete.
* python/python.c (before_prompt_hook): Adjust.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 360bed4..0f702a2 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -753,7 +753,7 @@ before_prompt_hook (const char *current_gdb_prompt) /* If a prompt has been set, PROMPT will not be NULL. If it is NULL, do not set the prompt. */ if (prompt != NULL) - set_prompt (prompt, 0); + set_prompt (prompt); do_cleanups (cleanup); return; |