From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 41514 invoked by alias); 20 Oct 2017 18:47:30 -0000 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 Received: (qmail 41505 invoked by uid 89); 20 Oct 2017 18:47:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-16.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=you! X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 20 Oct 2017 18:47:28 +0000 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 42F8BC047B97; Fri, 20 Oct 2017 18:47:27 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 42F8BC047B97 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=keiths@redhat.com Received: from valrhona.uglyboxes.com (ovpn04.gateway.prod.ext.phx2.redhat.com [10.5.9.4]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 123E85D9C1; Fri, 20 Oct 2017 18:47:26 +0000 (UTC) Subject: Re: [PATCH] Record nested types To: Eli Zaretskii Cc: gdb-patches@sourceware.org References: <20171020182648.5093-1-keiths@redhat.com> <83a80ld5f4.fsf@gnu.org> From: Keith Seitz Message-ID: <3dc3f5ff-4f13-f6ae-4a27-10df7be0ea93@redhat.com> Date: Fri, 20 Oct 2017 18:47:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <83a80ld5f4.fsf@gnu.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2017-10/txt/msg00678.txt.bz2 On 10/20/2017 11:45 AM, Eli Zaretskii wrote: >> From: Keith Seitz >> Date: Fri, 20 Oct 2017 11:26:48 -0700 >> >> --- a/gdb/NEWS >> +++ b/gdb/NEWS >> @@ -94,6 +94,10 @@ maint info selftests >> starti >> Start the debugged program stopping at the first instruction. >> >> +set|show print type nested-type-limit >> + Set and show the number of recursively defined nested types that the >> + type printer will show. > > Not sure why you used "recursive" here, I think it just makes the > intent more mysterious. How about this wording instead: > > Set and show the limit of the nesting level for nested types that > the type printer will show. That's much better! >> +@kindex set print type nested-type-limit >> +@item set print type nested-type-limit @var{limit} >> +Set the recursive display limit of nested types that the type printer will >> +show. A @var{limit} of -1 is treated as unlimited. By default, the type >> +printer will not show any nested types defined in classes. > > Same here. I'll make both changes. Thank you! Keith