(prompt_for_continue): Likewise for prompt-for-continue annotation.
authorJim Kingdon <jkingdon@engr.sgi.com>
Thu, 28 Apr 1994 16:04:36 +0000 (16:04 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Thu, 28 Apr 1994 16:04:36 +0000 (16:04 +0000)
gdb/ChangeLog
gdb/utils.c

index f06868cbb75cdec53cd86f01722505ada552c0c7..4f30981521c74baa30fec4673679491de04014d2 100644 (file)
@@ -2,6 +2,7 @@ Thu Apr 28 08:40:56 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
        * 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)
 
index 91470550e5ac1afa23647c754fab01808bbbfaa3..d1a5e70a43bd99028d7634167ff0107d89a4f938 100644 (file)
@@ -1047,6 +1047,9 @@ prompt_for_continue ()
   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)
@@ -1069,6 +1072,10 @@ prompt_for_continue ()
      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;
This page took 0.03095 seconds and 4 git commands to generate.