* gdbint.texinfo (User Interface): Change local_hex_string_custom

to hex_string_custom (not historically correct, but more
understandable, given the current code).
This commit is contained in:
Paul N. Hilfinger 2004-09-11 20:53:16 +00:00
parent 2444313964
commit 15a661f391
2 changed files with 7 additions and 1 deletions

View 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.

View 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: