From: Jim Kingdon Date: Sat, 19 Mar 1994 06:36:18 +0000 (+0000) Subject: * utils.c (prompt_for_continue): Call readline, not gdb_readline. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a94100d198b8e39bbe327c9c252cb45decb3dd06;p=binutils-gdb.git * utils.c (prompt_for_continue): Call readline, not gdb_readline. --- diff --git a/gdb/utils.c b/gdb/utils.c index 7480fa60429..d7edda30904 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1032,6 +1032,9 @@ prompt_for_continue () from system to system, and because telling them what to do in the prompt is more user-friendly than expecting them to think of SIGINT. */ + /* Call readline, not gdb_readline, because GO32 readline handles control-C + whereas control-C to gdb_readline will cause the user to get dumped + out to DOS. */ ignore = readline ("---Type to continue, or q to quit---"); if (ignore)