]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
(defaulted_query): Just use the normal query input type when printing the
authorNick Roberts <nickrob@snap.net.nz>
Tue, 11 May 2004 23:09:20 +0000 (23:09 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Tue, 11 May 2004 23:09:20 +0000 (23:09 +0000)
annotations.

gdb/utils.c

index 3bc5fed2a30791027b57a480dc240f6a32c281c0..30ccebe7378b9d753275a3a09703a3ae9462d61b 100644 (file)
@@ -1387,13 +1387,13 @@ defaulted_query (const char *ctlstr, const char defchar, va_list args)
       gdb_flush (gdb_stdout);
 
       if (annotation_level > 1)
-       printf_filtered ("\n\032\032pre-%cquery\n", defchar);
+       printf_filtered ("\n\032\032pre-query\n");
 
       vfprintf_filtered (gdb_stdout, ctlstr, args);
       printf_filtered ("(%s or %s) ", y_string, n_string);
 
       if (annotation_level > 1)
-       printf_filtered ("\n\032\032%cquery\n", defchar);
+       printf_filtered ("\n\032\032query\n");
 
       wrap_here ("");
       gdb_flush (gdb_stdout);
@@ -1437,7 +1437,7 @@ defaulted_query (const char *ctlstr, const char defchar, va_list args)
     }
 
   if (annotation_level > 1)
-    printf_filtered ("\n\032\032post-%cquery\n", defchar);
+    printf_filtered ("\n\032\032post-query\n");
   return retval;
 }
 \f