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 | 909a35f8b2ebe33891740f06d7cb13d32080caf5 (patch) | |
tree | 3d8c5c56926d1f81463a93116494d930a3abe69d /gdb/doc | |
parent | b93e641d3ab5fece86538d79e0f0f5dadf05c15e (diff) | |
download | gdb-909a35f8b2ebe33891740f06d7cb13d32080caf5.tar.gz |
* 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 | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 3df5fb28716..c38340d02c4 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 8ca22edc4a0..b24a1f1546a 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -38,7 +38,7 @@ Free Documentation License''. @page @tex \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$ -\xdef\manvers{\$Revision: 1.222 $} % For use in headers, footers too +\xdef\manvers{\$Revision: 1.223 $} % For use in headers, footers too {\parskip=0pt \hfill Cygnus Solutions\par \hfill \manvers\par @@ -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: |