From: Tom Tromey Date: Thu, 1 Dec 2011 20:27:28 +0000 (+0000) Subject: * gdb.texinfo (Writing a Pretty-Printer): Use append method, not X-Git-Tag: gdb_7_4-2011-12-13-branchpoint~128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae6f0d5b5a3ed963c92fdcd44e54ee76026f75d5;p=platform%2Fupstream%2Fbinutils.git * gdb.texinfo (Writing a Pretty-Printer): Use append method, not add. --- diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 82eefc3..e6cd76a 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2011-12-01 Tom Tromey + + * gdb.texinfo (Writing a Pretty-Printer): Use append method, not + add. + 2011-11-22 Tom Tromey * gdb.texinfo (GDB/MI Async Records): Document new *stopped diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 3321a77..86333ee 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -22591,7 +22591,7 @@ this code might appear in @code{gdb.libstdcxx.v6}: @smallexample def register_printers(objfile): - objfile.pretty_printers.add(str_lookup_function) + objfile.pretty_printers.append(str_lookup_function) @end smallexample @noindent