From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id CD60E385417F for ; Thu, 2 Feb 2023 14:32:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org CD60E385417F Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pNad3-0006kK-L3; Thu, 02 Feb 2023 09:31:59 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=ii9IM2io1sp9u6yZ0Gp18xdNHE8rFhCzEamLldX9v2A=; b=l5u7CtaYYwuU AsA2BlIysKLQ9CccRrXVdt70ZdZeEiaRqRGgCI2yC9SAAydyWNLUNnRq+hfd2tiT90UG/ue6sJQCi nE/lvObNYUbKoYhE9mhZgGwLwvg2LGmZ6d0p0GMoxWw5VgreQSaG9Zidxsxz+WiIgLCxv3sm9ct16 x80OmLyOpxBp8n3l7pSn/Npws/MDX3emB/DoRCKIWyxSY0OkmLb+/InSttWQ/q7FQ0vWkbg0Fyvp8 ee2ul9vubzI5aExKz9VYhs/np60zjGBjghnz/pL15j0D1aUe3OJJ77gmUI8tgJV7xngWdptD0zBgo Y3E9YgcPSWTnMt6gQI3AcA==; Received: from [87.69.77.57] (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 1pNad2-0004m0-RF; Thu, 02 Feb 2023 09:31:57 -0500 Date: Thu, 02 Feb 2023 16:31:59 +0200 Message-Id: <83wn50w334.fsf@gnu.org> From: Eli Zaretskii To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: <87mt5wrwhj.fsf@redhat.com> (message from Andrew Burgess on Thu, 02 Feb 2023 14:08:08 +0000) Subject: Re: [PATCHv2 4/6] gdb: error if 'thread' or 'task' keywords are overused References: <835yd1nxvz.fsf@gnu.org> <87mt5wrwhj.fsf@redhat.com> X-Spam-Status: No, score=1.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > From: Andrew Burgess > Cc: gdb-patches@sourceware.org > Date: Thu, 02 Feb 2023 14:08:08 +0000 > > * For the break command, multiple uses of the 'thread' or 'task' > keywords will now give an error instead of just using the thread or > task id from the last instance of the keyword. e.g.: > break foo thread 1 thread 2 > will now give an error rather than using 'thread 2'. > > * For the watch command, multiple uses of the 'task' keyword will now > give an error instead of just using the task id from the last > instance of the keyword. e.g.: > watch my_var task 1 task 2 > will now give an error rather than using 'task 2'. The 'thread' > keyword already gave an error when used multiple times with the > watch command, this remains unchanged. > > How's that? That's fine, but please capitalize "E.g." and leave 2 spaces before it.