This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Change local_hex_string_custom in gdbint.texinfo


In line with the current sources, modified reference to 
local_hex_string_custom to use hex_string_custom with new interface.  
As a historical statement, it is now inaccurate, but the purpose of
this section is not historical.  Committed as obvious.

Paul Hilfinger

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

Index: gdb/doc/gdbint.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v
retrieving revision 1.222
diff -u -p -r1.222 gdbint.texinfo
--- gdb/doc/gdbint.texinfo	3 Sep 2004 17:13:48 -0000	1.222
+++ gdb/doc/gdbint.texinfo	11 Sep 2004 20:51:56 -0000
@@ -1372,7 +1372,7 @@ Finally, here's an example of printing a
 @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:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]