* utils.c (query): Change syntax of query annotations to be
consistent with other input annotations.
+ (prompt_for_continue): Likewise for prompt-for-continue annotation.
Thu Apr 28 01:20:39 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
char *ignore;
char cont_prompt[120];
+ if (annotation_level > 1)
+ printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
+
strcpy (cont_prompt,
"---Type <return> to continue, or q <return> to quit---");
if (annotation_level > 1)
whereas control-C to gdb_readline will cause the user to get dumped
out to DOS. */
ignore = readline (cont_prompt);
+
+ if (annotation_level > 1)
+ printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
+
if (ignore)
{
char *p = ignore;