diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-07-05 10:36:41 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-07-05 10:36:41 +0000 |
commit | e2273c6d9d77703f6795c9a6337e33f604f1436c (patch) | |
tree | c0e8f4756c1b7756b1c8e72e2822262b8ea3103f /gdb/event-top.c | |
parent | 409a3f64ac594a93770f9b640941772787fa745c (diff) | |
download | gdb-e2273c6d9d77703f6795c9a6337e33f604f1436c.zip gdb-e2273c6d9d77703f6795c9a6337e33f604f1436c.tar.gz gdb-e2273c6d9d77703f6795c9a6337e33f604f1436c.tar.bz2 |
Replace command_loop_marker() with null_cleanup().
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r-- | gdb/event-top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index 34bf5df..deb7df67 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -487,7 +487,7 @@ command_handler (char *command) quit_flag = 0; if (instream == stdin && stdin_is_tty) reinitialize_more_filter (); - old_chain = make_cleanup (command_loop_marker, 0); + old_chain = make_cleanup (null_cleanup, 0); #if defined(TUI) insert_mode = 0; |