From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 5E68E385E444 for ; Sun, 4 Oct 2020 16:42:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5E68E385E444 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 094GfkUR017682 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sun, 4 Oct 2020 12:41:51 -0400 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 094GfkUR017682 Received: from [10.0.0.11] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 584A91E58E; Sun, 4 Oct 2020 12:41:46 -0400 (EDT) Subject: Re: [PATCH 2/2] gdb: add doc for "set/show debug event-loop" To: Eli Zaretskii Cc: gdb-patches@sourceware.org References: <20201003001437.3066505-1-simon.marchi@polymtl.ca> <20201003001437.3066505-2-simon.marchi@polymtl.ca> <83zh53g1a8.fsf@gnu.org> From: Simon Marchi Message-ID: <5b5d815b-3443-4424-d8b3-ca2346236c17@polymtl.ca> Date: Sun, 4 Oct 2020 12:41:45 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 MIME-Version: 1.0 In-Reply-To: <83zh53g1a8.fsf@gnu.org> Content-Type: text/plain; charset=utf-8 Content-Language: fr Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Sun, 4 Oct 2020 16:41:46 +0000 X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-DCC: sonic: antispam2020.polymtl.ca 1255; Body=1 Fuz1=1 Fuz2=1 X-Spam-Languages: en X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Sun, 04 Oct 2020 16:42:04 -0000 On 2020-10-03 4:29 a.m., Eli Zaretskii wrote: >> Date: Fri, 2 Oct 2020 20:14:37 -0400 >> From: Simon Marchi via Gdb-patches >> >> I forgot that "set/show debug" commands are listed in the doc and in >> NEWS, so here they are. >> >> gdb/doc/ChangeLog: >> >> * gdb.texinfo (Debugging Output): Add set/show debug event-loop. >> >> gdb/ChangeLog: >> >> * NEWS: Mention set/show debug event-loop. > > Thanks. > >> +@item set debug event-loop >> +@cindex event-loop debugging >> +Controls output of debugging info about the event loop. The possible >> +values are off, all (shows all debugging info) and all-except-ui (shows > > I think the values should be in @samp, otherwise they look like plain > words, and the sentence is confusing then. Excellent, I didn't know how to give that style. >> +@item show debug event-loop >> +Displays the current state of displaying debugging info about the event > ^^^^^^^^ > "Shows" will read better here, since "Displays the state of > displaying" reuses the same word. Will do. Note that I just copied another item, there are a few others that use this pattern and could be changed. > OK with those fixed. Thanks, I'll fix and push. Simon