diff options
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index a59fa34..5a6e468 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2011-10-07 Doug Evans <dje@google.com> + + * gdb.texinfo (gdb.printing): Document new `replace' arg to + register_pretty_printer. + 2011-10-07 Phil Muldoon <pmuldoon@redhat.com> PR python/12930 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index bb6e43c..af39ee9 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 |