From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-x136.google.com (mail-lf1-x136.google.com [IPv6:2a00:1450:4864:20::136]) by sourceware.org (Postfix) with ESMTPS id EB7173858D28 for ; Wed, 18 Jan 2023 21:57:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org EB7173858D28 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embecosm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=embecosm.com Received: by mail-lf1-x136.google.com with SMTP id d30so390362lfv.8 for ; Wed, 18 Jan 2023 13:57:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=mime-version:user-agent:references:message-id:in-reply-to:subject :cc:to:from:date:from:to:cc:subject:date:message-id:reply-to; bh=utXkmQaYi1Y0tM+bXj0Voqwj8EIuT52MLTFyPuWDnTw=; b=OGzAaGccnit7jCGoF5YOe1cAfnf25aFWRJ/3S0OgM8bQLYCxiY/MVacmKPB2gRDm+C nJ7Q3f5bABM1e5CjIUDVL46Pm5um+kuQpsSAIVtpMRCAnD4s2VYS1yoLHmNxermFDqYU aIJcnHePUB/2QfXN3maj07DF8j4gTOI1/pv8jdbjWozkg1Xy969fH/6c/ldMSjmwopxB VPAgoy+0uMdQaoYVDZA5yeZK5f++X/w7NTtJ+P+yoq9HT4SVQNcoWQPxNpqAORxP1RX9 kYhla4eE6CPHYSbxohWmFy8HoccPRKiVU+P22ayVlYNwqhb5Te/xOUVOBRb0bFB8Lf6R z5VQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:user-agent:references:message-id:in-reply-to:subject :cc:to:from:date:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=utXkmQaYi1Y0tM+bXj0Voqwj8EIuT52MLTFyPuWDnTw=; b=waTFsOhfbiKA44xQIfxmnjhFlpx+/iga71yBRgYSLl+XIQGhWjVVtWydgqaV1ItYvr JpnZOo7uFgmJz4hLpE4T11Kc+XOJt9fD4aHBZRAyNvGOk7jF6UB3kkAd2U9R1dsYpHU7 M074cnD1qs2bh/tNvFp3hDkyuGroku/KlDmPxPvjsc7uxDXuwFOITrlOKjaXYm1UgU49 SatCLx5YDLDjx3hHpFlInKguWLRPMXDh6nUo2Wdfydtgn5gQT98Zgdd3XZnYnElu0JVz eOl2GuLeqq/It6uVSmcbE+TPSmp+C4nygPRQdR2ijtso4h7am56Hfq2rGls8U0zwRV3j uqSg== X-Gm-Message-State: AFqh2kr7MeP6Hu79hrDl/EwPN8Qg38WJ7erAuQUD+v4Tqe2Ge7NqMU8j m+Misv9xNDgRWIdCdnfB2FmAZQ== X-Google-Smtp-Source: AMrXdXs2vOp5GIKmQb4dEtGm6tApSG+bCj/LkUKudP54h/G/4BRfYpFtmbtF9V1XcWoG5fa8V6eHGg== X-Received: by 2002:ac2:43bb:0:b0:4ca:fe88:a153 with SMTP id t27-20020ac243bb000000b004cafe88a153mr5707659lfl.46.1674079019572; Wed, 18 Jan 2023 13:56:59 -0800 (PST) Received: from [192.168.219.3] ([78.8.192.131]) by smtp.gmail.com with ESMTPSA id z9-20020a056512370900b004cc898ce1c6sm3975424lfr.160.2023.01.18.13.56.58 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Jan 2023 13:56:58 -0800 (PST) Date: Wed, 18 Jan 2023 21:56:56 +0000 (GMT) From: "Maciej W. Rozycki" To: Simon Marchi cc: gdb-patches@sourceware.org, Andrew Burgess , Tom Tromey , Simon Sobisch Subject: Re: [PATCH v8 1/6] GDB: Fix documentation for `theclass' parameters in cli-decode.c In-Reply-To: <5e1654c1-40cf-c134-2764-003c11ddbb06@polymtl.ca> Message-ID: References: <5e1654c1-40cf-c134-2764-003c11ddbb06@polymtl.ca> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Thu, 12 Jan 2023, Simon Marchi wrote: > > Rename CLASS to THECLASS in the documentation for `theclass' parameters > > throughout cli-decode.c, complementing commit fe978cb071b4 ("C++ keyword > > cleanliness, mostly auto-generated"). > > This is ok, if you find more of these, I think you can push them as > obvious. Committed now, thanks for your review. Maciej