diff options
author | Paul N. Hilfinger <hilfinger@adacore.com> | 2004-09-11 20:53:16 +0000 |
---|---|---|
committer | Paul N. Hilfinger <hilfinger@adacore.com> | 2004-09-11 20:53:16 +0000 |
commit | 15a661f391345da00586e24b5a4265198d27e190 (patch) | |
tree | 91ca82d68f1b2040c9eec1dcbe794fb9ec5ef59f /gdb/doc | |
parent | 2444313964c5d1ad331727ccebee6611838d3152 (diff) | |
download | gdb-15a661f391345da00586e24b5a4265198d27e190.zip gdb-15a661f391345da00586e24b5a4265198d27e190.tar.gz gdb-15a661f391345da00586e24b5a4265198d27e190.tar.bz2 |
* gdbint.texinfo (User Interface): Change local_hex_string_custom
to hex_string_custom (not historically correct, but more
understandable, given the current code).
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 3df5fb2..c38340d 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -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. diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index b153f92..fa0b6c4 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: |