* gdbint.texinfo (User Interface): Change local_hex_string_custom
authorPaul N. Hilfinger <hilfinger@adacore.com>
Sat, 11 Sep 2004 20:53:16 +0000 (20:53 +0000)
committerPaul N. Hilfinger <hilfinger@adacore.com>
Sat, 11 Sep 2004 20:53:16 +0000 (20:53 +0000)
to hex_string_custom (not historically correct, but more
understandable, given the current code).

gdb/doc/ChangeLog
gdb/doc/gdbint.texinfo

index 3df5fb2..c38340d 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-11  Paul Hilfinger  <hilfinger@gnat.com>
+
+       * gdbint.texinfo (User Interface): Change local_hex_string_custom 
+       to hex_string_custom (not historically correct, but more 
+       understandable, given the current code).
+
 2004-09-03  Andrew Cagney  <cagney@gnu.org>
 
        * gdbint.texinfo (Native Debugging): Delete SVR4_SHARED_LIBS.
index b153f92..fa0b6c4 100644 (file)
@@ -1372,7 +1372,7 @@ Finally, here's an example of printing an address.  The original code:
 @smallexample
   annotate_field (4);
   printf_filtered ("%s ",
-        local_hex_string_custom ((unsigned long) b->address, "08l"));
+        hex_string_custom ((unsigned long) b->address, 8));
 @end smallexample
 
 It became: