From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id iE8lDZzMbWA3bwAAWB0awg (envelope-from ) for ; Wed, 07 Apr 2021 11:15:40 -0400 Received: by simark.ca (Postfix, from userid 112) id 33A021E965; Wed, 7 Apr 2021 11:15:40 -0400 (EDT) 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 AADF01E54D for ; Wed, 7 Apr 2021 11:15:39 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 2464B3938C1A; Wed, 7 Apr 2021 15:15:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2464B3938C1A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1617808539; bh=KxXY3slQy1h6b7yuCYwpNLWSPwi6ClC5jMCXPM1gOXk=; 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=VnvGOlCpIEqtdYTIUBSdZrOA3pgIIHtp/JWgSiLo71tFU6VuBbipZSQBJb9HlF4EV jWMWIGiG++laGXXZ7IwmmX3ZUX7B03U7CLj+JmDcZ+mLPZRf01WleNakNRs+LKXrnG j0F07KXOC48SLOmGyq254uLmnE8OFiXj6g31vCpE= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id CCF12385702D for ; Wed, 7 Apr 2021 15:15:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org CCF12385702D Received: from fencepost.gnu.org ([2001:470:142:3::e]:48379) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lU9u4-0005Xz-7R; Wed, 07 Apr 2021 11:15:36 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:1940 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lU9tt-00006H-Bl; Wed, 07 Apr 2021 11:15:32 -0400 Date: Wed, 07 Apr 2021 18:15:25 +0300 Message-Id: <83r1jm9lde.fsf@gnu.org> To: Tankut Baris Aktemur In-Reply-To: <8895692d5366d94633391a459b7f94fb9a4eda64.1617806598.git.tankut.baris.aktemur@intel.com> (message from Tankut Baris Aktemur via Gdb-patches on Wed, 7 Apr 2021 16:55:56 +0200) Subject: Re: [PATCH 1/4] gdb/doc: update the 'enabled' field's description for BP locations in MI References: <8895692d5366d94633391a459b7f94fb9a4eda64.1617806598.git.tankut.baris.aktemur@intel.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@sourceware.org Sender: "Gdb-patches" > Date: Wed, 7 Apr 2021 16:55:56 +0200 > From: Tankut Baris Aktemur via Gdb-patches > > @item enabled > This indicates whether the location is enabled, in which case the > -value is @samp{y}, or disabled, in which case the value is @samp{n}. > -Note that this is not the same as the field @code{enable}. > +value is @samp{y}, or disabled by the user, in which case the value > +is @samp{n}, or disabled because the breakpoint condition is invalid > +at this location, in which case the value is @samp{N*}. This is better formatted as a @table. Trying ti squeeze all of the possible values into a single sentence runs a high risk of producing a complex and confusing sentence. Thanks.