From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd30.google.com (mail-io1-xd30.google.com [IPv6:2607:f8b0:4864:20::d30]) by sourceware.org (Postfix) with ESMTPS id A94B53857BBD for ; Fri, 15 Jul 2022 14:46:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A94B53857BBD Received: by mail-io1-xd30.google.com with SMTP id q14so4006953iod.3 for ; Fri, 15 Jul 2022 07:46:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=EWmq1ASLCuXWDVxH4iX0uXkV5IyhENUu3KUYhtkbbKc=; b=Tk9n23ZhuYUyUb/8zDXRybU7EMgGcXqdqb71O9kEA+YeT7TCYjrXX8bf7sn5v/P480 DqN3+q6lXoSpOo4YNKgRWgYl/hKud2snJQ+Yeuu5KbdMCWlZ/AB7Zei+MPJDLT3tUE9Y wRV277kJ6BDMfHscTUnMHoo45nomdRw8rjjLDkt8nkM0WcsG5AIxOOGyYoMptTEDbMw9 IN/hshhivovNHPvbcfutwKejrupstRiJrluPG2IocPUDn18nurUEzb+60ajpZ2c6VEcr Zu2sv4dXjYf9JuRL2gPQ4MOs78lra8+57Kz6tPYIdOO5hw27j2FCYNFXJATBZl3Qw4qv mw0g== X-Gm-Message-State: AJIora98FHaYeoYJX+St7nEtLqsFWApoD86Lth8P5M3WaaWsJkr2FBgk vUIEgY3LsSmkphZP16A4gcVVTAd3FHnLgg== X-Google-Smtp-Source: AGRyM1syb6pmn4FX1o3+6/TSy2B9T+dlCalrrixpXwIurMmVH5qjtkQDeOR/xUh4pixgDjTWB4H8IA== X-Received: by 2002:a02:c722:0:b0:33f:393d:d198 with SMTP id h2-20020a02c722000000b0033f393dd198mr7880350jao.22.1657896360987; Fri, 15 Jul 2022 07:46:00 -0700 (PDT) Received: from murgatroyd (71-211-185-228.hlrn.qwest.net. [71.211.185.228]) by smtp.gmail.com with ESMTPSA id k22-20020a023356000000b00339e8a3e787sm2002693jak.99.2022.07.15.07.46.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 15 Jul 2022 07:46:00 -0700 (PDT) From: Tom Tromey To: Eli Zaretskii via Gdb-patches Cc: Tom Tromey , Eli Zaretskii Subject: Re: [PATCH 2/2] Add 'summary' mode to Value.format_string References: <20220607154226.3281521-1-tromey@adacore.com> <20220607154226.3281521-3-tromey@adacore.com> <835ylc78ux.fsf@gnu.org> X-Attribution: Tom Date: Fri, 15 Jul 2022 08:45:59 -0600 In-Reply-To: <835ylc78ux.fsf@gnu.org> (Eli Zaretskii via Gdb-patches's message of "Tue, 07 Jun 2022 19:10:14 +0300") Message-ID: <87wnceqvrs.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-5.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2022 14:46:04 -0000 >>>>> "Eli" == Eli Zaretskii via Gdb-patches writes: >> --- a/gdb/NEWS >> +++ b/gdb/NEWS >> @@ -70,6 +70,8 @@ maintenance info line-table >> ** gdb.Value.format_string now uses the format provided by 'print', >> if it is called during a 'print' or other similar operation. >> >> + ** gdb.Value.format_string now accepts the 'summary' keyword. Eli> Maybe say something about what this does? I added a sentence about this. Tom