From: hilfingr Date: Sat, 11 Sep 2004 20:53:16 +0000 (+0000) Subject: * gdbint.texinfo (User Interface): Change local_hex_string_custom X-Git-Tag: reparent-point~902 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7360cfea7a57f1798899e3a6203d8e0501726dd3;p=pf3gnuchains%2Fpf3gnuchains4x.git * gdbint.texinfo (User Interface): Change local_hex_string_custom to hex_string_custom (not historically correct, but more understandable, given the current code). --- diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 3df5fb2871..c38340d02c 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2004-09-11 Paul Hilfinger + + * 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 * gdbint.texinfo (Native Debugging): Delete SVR4_SHARED_LIBS. diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index b153f926d4..fa0b6c4caf 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -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: