* printcmd.c (print_formatted, case 'i'): Pass a tab to wrap_here.
authorJim Kingdon <jkingdon@engr.sgi.com>
Wed, 26 May 1993 04:56:02 +0000 (04:56 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Wed, 26 May 1993 04:56:02 +0000 (04:56 +0000)
* source.c (line_info): Change "pc" to "address" in messages and
use print_address for addresses.

gdb/ChangeLog
gdb/printcmd.c

index 52197a9..7dba179 100644 (file)
@@ -1,5 +1,10 @@
 Tue May 25 20:44:24 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * printcmd.c (print_formatted, case 'i'): Pass a tab to wrap_here.
+
+       * source.c (line_info): Change "pc" to "address" in messages and
+       use print_address for addresses.
+
        * source.c (line_info): If we don't find a symtab, print more useful
        output, including the symbolic address.
 
index 00fb3ea..b5bf3d8 100644 (file)
@@ -309,7 +309,12 @@ print_formatted (val, format, size)
       break;
 
     case 'i':
-      wrap_here ("");  /* Force output out, print_insn not using _filtered */
+      /* The old comment says
+        "Force output out, print_insn not using _filtered".
+        I'm not completely sure what that means, I suspect most print_insn
+        now do use _filtered, so I guess it's obsolete.  */
+      /* We often wrap here if there are long symbolic names.  */
+      wrap_here ("\t");
       next_address = VALUE_ADDRESS (val)
        + print_insn (VALUE_ADDRESS (val), stdout);
       break;