From 8f5ba92b7b6157c0f27c93331de8f08c08d50e1a Mon Sep 17 00:00:00 2001 From: Jerome Guitton Date: Tue, 10 Aug 2004 16:09:54 +0000 Subject: * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to print a line feed before the prompt. --- gdb/symfile.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gdb/symfile.c') diff --git a/gdb/symfile.c b/gdb/symfile.c index f8c7a44..38f6c01 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -865,7 +865,11 @@ symbol_file_add_with_addrs_or_offsets (bfd *abfd, int from_tty, if (!have_partial_symbols () && !have_full_symbols ()) { wrap_here (""); - printf_unfiltered ("(no debugging symbols found)..."); + printf_filtered ("(no debugging symbols found)"); + if (from_tty || info_verbose) + printf_filtered ("..."); + else + printf_filtered ("\n"); wrap_here (""); } -- cgit v1.1