From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25519 invoked by alias); 5 Nov 2012 20:52:50 -0000 Received: (qmail 25500 invoked by uid 22791); 5 Nov 2012 20:52:48 -0000 X-SWARE-Spam-Status: No, hits=-4.5 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,SPF_SOFTFAIL X-Spam-Check-By: sourceware.org Received: from mtaout20.012.net.il (HELO mtaout20.012.net.il) (80.179.55.166) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 05 Nov 2012 20:52:42 +0000 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MD1007008LKXR00@a-mtaout20.012.net.il> for gdb-patches@sourceware.org; Mon, 05 Nov 2012 22:52:28 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MD10072Q8NGXP10@a-mtaout20.012.net.il>; Mon, 05 Nov 2012 22:52:28 +0200 (IST) Date: Mon, 05 Nov 2012 20:52:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH 8/9] class-local typedef substitutions In-reply-to: <87objblrtq.fsf@fleche.redhat.com> To: Tom Tromey Cc: palves@redhat.com, gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83pq3r3h88.fsf@gnu.org> References: <87vcfphdl8.fsf@fleche.redhat.com> <87sjabrx4g.fsf@fleche.redhat.com> <5091795B.7020506@redhat.com> <87hap9qbqm.fsf@fleche.redhat.com> <87a9uzohhi.fsf@fleche.redhat.com> <87objblrtq.fsf@fleche.redhat.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-11/txt/msg00096.txt.bz2 > From: Tom Tromey > Cc: gdb-patches@sourceware.org > Date: Mon, 05 Nov 2012 13:26:09 -0700 > > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -8,6 +8,9 @@ > -nh Disables auto-loading of ~/.gdbinit, but still executes all the > other initialization files, unlike -nx which disables all of them. > > +* The 'ptype' and 'whatis' commands now accept an argument to control > + type formatting. > + > * Python scripting > > ** Vectors can be created with gdb.Type.vector. > @@ -52,6 +55,18 @@ py [command] > (has been deprecated in GDB 7.5), and "info all-registers" should be used > instead. > > +* New options > + > +set print type methods (on|off) > +show print type methods > + Control whether method declarations are displayed by "ptype". > + The default is to show them. > + > +set print type typedefs (on|off) > +show print type typedefs > + Control whether typedef definitions are displayed by "ptype". > + The default is to show them. > + This part is OK, but shouldn't there be a patch for the manual to match it? Or did I miss something? Thanks.