From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 06 05:49:32 2023 Received: (at submit) by debbugs.gnu.org; 6 Feb 2023 10:49:32 +0000 Received: from localhost ([127.0.0.1]:47462 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pOz3z-0000Oi-Sb for submit@debbugs.gnu.org; Mon, 06 Feb 2023 05:49:32 -0500 Received: from lists.gnu.org ([209.51.188.17]:41440) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pOz3z-0000Ob-2c for submit@debbugs.gnu.org; Mon, 06 Feb 2023 05:49:31 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pOz3o-0005A0-Vr for bug-gnu-emacs@gnu.org; Mon, 06 Feb 2023 05:49:21 -0500 Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pOz3m-0005tj-H0 for bug-gnu-emacs@gnu.org; Mon, 06 Feb 2023 05:49:20 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 369672401AC for ; Mon, 6 Feb 2023 11:49:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1675680551; bh=3QIMgkAF6BDQPF0PG3RAwlkt04aP4Ckk1F5aNzotIyA=; h=From:To:Subject:Date:From; b=X1RZQIvcIM75npldqtTIRNUvxXMz7xv2ReTCVC8U327O4ZYOe3FSD20DFqerI9yw3 ydaP2AZzr8ryNt8N6GUXRI/q6WLhjSGPgZ0WDIlQN1oGaW/x0nPg9YJFKLJUuzLklK YJGHj0KLQBZCfNM3s3QCSIXKLO2Eq2P+6cLaeprpnu6NOGrCp2PH8uFV7U++ElvY0c WCDsJxv8I5UVIiIuBu6hH3TcEDhBvxPCd5/X41VFvP+5AwGepg7mqaPF1+LM7FxiH3 EwNgcFSq2isoia5HSmsQRuIo2aer/cR47g0HyUMOYMu4s41SLikasfsUSlvcw46Q3D 7+CmrAKKmfleg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4P9NKy39qSz9rxF for ; Mon, 6 Feb 2023 11:49:10 +0100 (CET) From: Aleksandr Vityazev To: bug-gnu-emacs@gnu.org Subject: emacs-29; [PATCH] * lisp/treesit.el (treesit): Fix shortdoc example form. Date: Mon, 06 Feb 2023 10:49:08 +0000 Message-ID: <87357j5asb.fsf@posteo.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=185.67.36.66; envelope-from=avityazev@posteo.org; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) --=-=-= Content-Type: text/plain Tags: patch Hi, Since treesit-parser-create requires at the least one arg, I think it better to add it to example-form. The patch was created in the emacs-29 branch. -- Best regards, Aleksandr Vityazev --=-=-= Content-Type: text/patch Content-Disposition: attachment; filename=0001-lisp-treesit.el-treesit-Fix-shortdoc-example-form.patch >From 747d9202330e8eb3fb853002d8ec8089ff343b09 Mon Sep 17 00:00:00 2001 Message-Id: <747d9202330e8eb3fb853002d8ec8089ff343b09.1675679959.git.avityazev@posteo.org> From: Aleksandr Vityazev Date: Mon, 6 Feb 2023 13:39:10 +0300 Subject: [PATCH] * lisp/treesit.el (treesit): Fix shortdoc example form. --- lisp/treesit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/treesit.el b/lisp/treesit.el index 7bd68c9a6d9..6015e78bbd5 100644 --- a/lisp/treesit.el +++ b/lisp/treesit.el @@ -2963,7 +2963,7 @@ treesit "Parsers" (treesit-parser-create - :no-eval (treesit-parser-create) + :no-eval (treesit-parser-create 'c) :eg-result-string "#") (treesit-parser-delete :no-value (treesit-parser-delete parser)) base-commit: 5a6dfab1e4d5d89e5d5ff3bef73279926f067dbc -- 2.39.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 06 09:38:31 2023 Received: (at 61318-done) by debbugs.gnu.org; 6 Feb 2023 14:38:31 +0000 Received: from localhost ([127.0.0.1]:47856 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pP2da-0001TS-QG for submit@debbugs.gnu.org; Mon, 06 Feb 2023 09:38:31 -0500 Received: from eggs.gnu.org ([209.51.188.92]:48704) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pP2dX-0001TB-UY for 61318-done@debbugs.gnu.org; Mon, 06 Feb 2023 09:38:28 -0500 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 1pP2dS-0002Bo-2C; Mon, 06 Feb 2023 09:38:22 -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=8H0vSYjeNngo3PT1b6+FuzKg6d8+TWpEFP2+YMoqR2E=; b=UG/eSUT1/BJX GV+Fk6K/g4c9Aqa5AOolr5JXq/SKG1WnIQQDq739Q4npxcdHCAHw2EVIjBrGeqUaQ7NUpCiRbhZfv zMqaWoPj0NgIy1ZRycgLlNustyYXW3hMgrLV0G7ScetIA/e8LvjgsM/9adDfO0GtHj/M5nSqoueJ8 Dvfsov1UkvSVDBqGRLmluwWwq8XZM0/QNsJZoJxd23T0yxwJAry99BX/ePPNZKr9EjNkKZvwLjbPC Jd7uhgmA64yNO9gkhe/uEw/vv+9mfy7K7ifdWC2W9r15+sYk8UldosT3BJybpVyiD7gJCh3kxWgCl olo7HA7HCtcvcaTm/QIMdA==; 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 1pP2dR-0006K1-Ci; Mon, 06 Feb 2023 09:38:21 -0500 Date: Mon, 06 Feb 2023 16:38:33 +0200 Message-Id: <831qn2rh92.fsf@gnu.org> From: Eli Zaretskii To: Aleksandr Vityazev In-Reply-To: <87357j5asb.fsf@posteo.org> (message from Aleksandr Vityazev on Mon, 06 Feb 2023 10:49:08 +0000) Subject: Re: bug#61318: emacs-29; [PATCH] * lisp/treesit.el (treesit): Fix shortdoc example form. References: <87357j5asb.fsf@posteo.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61318-done Cc: 61318-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Aleksandr Vityazev > Date: Mon, 06 Feb 2023 10:49:08 +0000 > > Since treesit-parser-create requires at the least one arg, I think it > better to add it to example-form. The patch was created in the emacs-29 > branch. Thanks, installed on the emacs-29 branch. From unknown Sat Jun 21 05:18:44 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 07 Mar 2023 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator