From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id t1+YO3ch9GH6BgAAWB0awg (envelope-from ) for ; Fri, 28 Jan 2022 12:01:43 -0500 Received: by simark.ca (Postfix, from userid 112) id E3DB81F3B7; Fri, 28 Jan 2022 12:01:43 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id C629D1EE18 for ; Fri, 28 Jan 2022 12:01:42 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 1AC47384602E for ; Fri, 28 Jan 2022 17:01:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1AC47384602E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1643389302; bh=OVaYRQEMPorYX4tazM5/h88mZHnT80FKzpt7CgGQkGw=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=ig6WIiW5xTEn27uZPgQyj4ZtAk94iwhUUUY0e0Oj1w91nMtdro9y7G9P3UrK6MR// k+9JTDdjjmgeKVYyfBTV/U9FAfyYlSg/jyPzEFx8J9ZONKs1zPuzUsmvXj7gOGwVmu C9yIZLprh5OwpDkxLNzRY/ALnT2Vsx3QJr0adzmE= Received: from eggs.gnu.org (eggs.gnu.org [209.51.188.92]) by sourceware.org (Postfix) with ESMTPS id B16FF385840C for ; Fri, 28 Jan 2022 17:01:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B16FF385840C Received: from [2001:470:142:3::e] (port=59760 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nDUcb-000322-6B; Fri, 28 Jan 2022 12:01:16 -0500 Received: from [87.69.77.57] (port=4000 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nDUcE-0004p1-0C; Fri, 28 Jan 2022 12:01:07 -0500 Date: Fri, 28 Jan 2022 19:00:33 +0200 Message-Id: <838ruzdccu.fsf@gnu.org> To: Andrew Burgess In-Reply-To: <8a07632c8949a934306406f22a5c659018cd1d39.1643385021.git.aburgess@redhat.com> (message from Andrew Burgess via Gdb-patches on Fri, 28 Jan 2022 15:55:02 +0000) Subject: Re: [PATCH 1/7] gdb/tui: add window width information to 'info win' output References: <8a07632c8949a934306406f22a5c659018cd1d39.1643385021.git.aburgess@redhat.com> 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: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" > Date: Fri, 28 Jan 2022 15:55:02 +0000 > From: Andrew Burgess via Gdb-patches > Cc: Andrew Burgess > > diff --git a/gdb/NEWS b/gdb/NEWS > index e1900596ca7..8da68c88def 100644 > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -102,6 +102,10 @@ show debug lin-lwp > debug linux-nat' and 'show debug linux-nat' should be used > instead. > > +info win > + This command now includes information about the width of the tui > + windows in its output. > + This part is OK, thanks.