From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id CPS/L587+19vegAAWB0awg (envelope-from ) for ; Sun, 10 Jan 2021 12:38:39 -0500 Received: by simark.ca (Postfix, from userid 112) id BF0A61E940; Sun, 10 Jan 2021 12:38:39 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.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 161981E940 for ; Sun, 10 Jan 2021 12:38:39 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C7C693858038; Sun, 10 Jan 2021 17:38:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C7C693858038 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1610300318; bh=x7JbP3MGK+u2BlClxD+adOSg0WYiKjHtkQA2mu+PiGs=; h=Date:To:Subject:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=depu29ZBVq8mlissIg5ZFEE00vBvDEoo71obTyrh59HXMaeN3FUrwHvrdyOgzpyJO EsoyYwVdz7AnrjtAipnNdbDlie/cEpC/LSCh4C3APNtx2fu1exsltM9LbtygC6SHbf KyxNc1vZDHNRsW1i3kPL0yeonDFOhOgdBCxyo/1c= Received: from beryx.lancelotsix.com (beryx.lancelotsix.com [164.132.98.193]) by sourceware.org (Postfix) with ESMTPS id 2BCE33858038 for ; Sun, 10 Jan 2021 17:38:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 2BCE33858038 Received: from gwenhwyvar (unknown [IPv6:2a02:390:8443:0:1c9e:e924:398a:fa8d]) by beryx.lancelotsix.com (Postfix) with ESMTPSA id AB1612E070; Sun, 10 Jan 2021 18:38:34 +0100 (CET) Date: Sun, 10 Jan 2021 17:38:32 +0000 To: Eli Zaretskii Subject: Re: [PATCH v3] inferior without argument prints detail of current inferior Message-ID: <20210110173832.GB3661@gwenhwyvar> References: <11db31d0-2dc1-2f87-7a8f-4ce1e1026874@polymtl.ca> <20210109212416.10681-1-lsix@lancelotsix.com> <83a6tghhi7.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <83a6tghhi7.fsf@gnu.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.11 (beryx.lancelotsix.com [0.0.0.0]); Sun, 10 Jan 2021 18:38:34 +0100 (CET) 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: Lancelot SIX via Gdb-patches Reply-To: Lancelot SIX Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On Sun, Jan 10, 2021 at 06:41:04PM +0200, Eli Zaretskii wrote: > > Date: Sat, 9 Jan 2021 21:24:16 +0000 > > From: Lancelot SIX via Gdb-patches > > Cc: Lancelot SIX > > > > Changes from V1: > > * Add test. > > > > Change from V2: > > * Fix gdb/doc/ChangeLog entry. > > * My copyright assignment has been signed. > > > > gdb/doc/ChangeLog: > > > > * gdb.texinfo (Inferiors Connections and Programs): Document the > > inferior command when used without argument. > > > > gdb/ChangeLog: > > > > * inferior.c (inferior_command): When no argument is given to the > > inferior command, display info about the currently selected > > inferior. > > > > gdb/testsuite/ChangeLog: > > > > * gdb.base/inferior-noarg.c: New test. > > * gdb.base/inferior-noarg.exp: New test. > > OK for the documentation part, but does this warrant a NEWS entry as > well? > > Thanks. I’ll add an entry in the next submission. Lancelot.