From: Doug Evans Date: Fri, 7 Oct 2011 23:01:54 +0000 (+0000) Subject: * gdb.texinfo (gdb.printing): Document new `replace' arg to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c15afc467bfda43425d9d7f024168534b44396c;p=binutils-gdb.git * gdb.texinfo (gdb.printing): Document new `replace' arg to register_pretty_printer. --- diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index a59fa34f84d..5a6e468ead7 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2011-10-07 Doug Evans + + * gdb.texinfo (gdb.printing): Document new `replace' arg to + register_pretty_printer. + 2011-10-07 Phil Muldoon PR python/12930 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index bb6e43c4414..af39ee9ed97 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -24001,8 +24001,11 @@ Utility class for handling multiple printers, all recognized via regular expressions. @xref{Writing a Pretty-Printer}, for an example. -@item register_pretty_printer (@var{obj}, @var{printer}) +@item register_pretty_printer (@var{obj}, @var{printer}, @var{replace}=False) Register @var{printer} with the pretty-printer list of @var{obj}. +If @var{replace} is @code{True} then any existing copy of the printer +is replaced. Otherwise a @code{RuntimeError} exception is raised +if a printer with the same name already exists. @end table @node gdb.types