From 7b6be5250fbbf29c34c8bde7a3cae8d4269d3a2d Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Tue, 11 May 2004 19:19:34 +0000 Subject: [PATCH] (defaulted_query): Just use the normal query input type when printing the annotations. --- gdb/utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdb/utils.c b/gdb/utils.c index 89fca0694c7..504890ebf15 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1388,13 +1388,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); @@ -1438,7 +1438,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; } -- 2.30.2