From unknown Sat Aug 09 22:37:08 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#57665 <57665@debbugs.gnu.org> To: bug#57665 <57665@debbugs.gnu.org> Subject: Status: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el Reply-To: bug#57665 <57665@debbugs.gnu.org> Date: Sun, 10 Aug 2025 05:37:08 +0000 retitle 57665 [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el reassign 57665 emacs submitter 57665 Sam James severity 57665 normal tag 57665 moreinfo patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 22:58:12 2022 Received: (at submit) by debbugs.gnu.org; 8 Sep 2022 02:58:12 +0000 Received: from localhost ([127.0.0.1]:56828 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7k4-0001r1-EZ for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:58:12 -0400 Received: from lists.gnu.org ([209.51.188.17]:36090) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7k2-0001qu-Ph for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:58:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36390) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oW7k2-0006os-Kl for bug-gnu-emacs@gnu.org; Wed, 07 Sep 2022 22:58:10 -0400 Received: from woodpecker.gentoo.org ([2001:470:ea4a:1:5054:ff:fec7:86e4]:41921 helo=smtp.gentoo.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1oW7k0-0003s8-3V for bug-gnu-emacs@gnu.org; Wed, 07 Sep 2022 22:58:09 -0400 From: Sam James To: bug-gnu-emacs@gnu.org Subject: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el Date: Thu, 8 Sep 2022 03:57:33 +0100 Message-Id: <20220908025733.3176746-1-sam@gentoo.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <834jxjifhd.fsf@gnu.org> References: <834jxjifhd.fsf@gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:470:ea4a:1:5054:ff:fec7:86e4; envelope-from=sam@gentoo.org; helo=smtp.gentoo.org X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Sam James 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 (---) * lisp/info.el (Info-suffix-list): Recognize .zst file extension from the zstd compression tool. This allos reading Info pages compressed with zstandard. Signed-off-by: Sam James --- lisp/info.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/info.el b/lisp/info.el index 1a58910c3a..292bf93a6f 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -451,6 +451,7 @@ or `Info-virtual-nodes'." (".info.z" . "gunzip") (".info.bz2" . ("bzip2" "-dc")) (".info.xz" . "unxz") + (".info.zst" . ("zstd" "-dc")) (".info" . nil) ("-info.Z" . "uncompress") ("-info.Y" . "unyabba") @@ -458,6 +459,7 @@ or `Info-virtual-nodes'." ("-info.bz2" . ("bzip2" "-dc")) ("-info.z" . "gunzip") ("-info.xz" . "unxz") + ("-info.zst" . ("zstd" "-dc")) ("-info" . nil) ("/index.Z" . "uncompress") ("/index.Y" . "unyabba") @@ -465,6 +467,7 @@ or `Info-virtual-nodes'." ("/index.z" . "gunzip") ("/index.bz2" . ("bzip2" "-dc")) ("/index.xz" . "unxz") + ("/index.zst" . ("zstd" "-dc")) ("/index" . nil) (".Z" . "uncompress") (".Y" . "unyabba") @@ -472,6 +475,7 @@ or `Info-virtual-nodes'." (".z" . "gunzip") (".bz2" . ("bzip2" "-dc")) (".xz" . "unxz") + (".zst" . ("zstd" "-dc")) ("" . nil))) "List of file name suffixes and associated decoding commands. Each entry should be (SUFFIX . STRING); the file is given to -- 2.37.3 From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 22:59:33 2022 Received: (at submit) by debbugs.gnu.org; 8 Sep 2022 02:59:33 +0000 Received: from localhost ([127.0.0.1]:56840 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7lN-0001tq-9i for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:59:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:44374) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7lL-0001ti-DY for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:59:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39746) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oW7lL-0007e2-7G for bug-gnu-emacs@gnu.org; Wed, 07 Sep 2022 22:59:31 -0400 Received: from mail.gentoo.org ([2001:470:ea4a:1:5054:ff:fec7:86e4]:58937 helo=smtp.gentoo.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1oW7lJ-00041c-47 for bug-gnu-emacs@gnu.org; Wed, 07 Sep 2022 22:59:30 -0400 From: Sam James Content-Type: multipart/signed; boundary="Apple-Mail=_A3A087E8-00AA-4E4D-B066-0762FE2D71B1"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Re: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el Date: Thu, 8 Sep 2022 03:59:15 +0100 References: <834jxjifhd.fsf@gnu.org> <20220908025733.3176746-1-sam@gentoo.org> To: bug-gnu-emacs@gnu.org In-Reply-To: <20220908025733.3176746-1-sam@gentoo.org> Message-Id: X-Mailer: Apple Mail (2.3696.120.41.1.1) Received-SPF: pass client-ip=2001:470:ea4a:1:5054:ff:fec7:86e4; envelope-from=sam@gentoo.org; helo=smtp.gentoo.org X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.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: -3.3 (---) --Apple-Mail=_A3A087E8-00AA-4E4D-B066-0762FE2D71B1 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii > On 8 Sep 2022, at 03:57, Sam James wrote: >=20 > * lisp/info.el (Info-suffix-list): Recognize .zst file extension from = the > zstd compression tool. This allos reading Info pages compressed with = zstandard. >=20 > Signed-off-by: Sam James > --- > lisp/info.el | 4 ++++ > 1 file changed, 4 insertions(+) >=20 >=20 Bleh, sorry, ignore, it's a duplicate of = https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D57636. It was supposed to send in reply but it didn't work. --Apple-Mail=_A3A087E8-00AA-4E4D-B066-0762FE2D71B1 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iNUEARYKAH0WIQQlpruI3Zt2TGtVQcJzhAn1IN+RkAUCYxlahF8UgAAAAAAuAChp c3N1ZXItZnByQG5vdGF0aW9ucy5vcGVucGdwLmZpZnRoaG9yc2VtYW4ubmV0MjVB NkJCODhERDlCNzY0QzZCNTU0MUMyNzM4NDA5RjUyMERGOTE5MAAKCRBzhAn1IN+R kCc2AQCFu7ey3hWR6mGepV8q7LNve61Z5q/+IIGA+OjNXEM87AD+IQBrYaEtExUm r/dOubHMxzGpdJksSYy7yRnw8232dQ0= =av3o -----END PGP SIGNATURE----- --Apple-Mail=_A3A087E8-00AA-4E4D-B066-0762FE2D71B1-- From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 23:02:36 2022 Received: (at request) by debbugs.gnu.org; 8 Sep 2022 03:02:36 +0000 Received: from localhost ([127.0.0.1]:56844 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7oJ-00020B-RW for submit@debbugs.gnu.org; Wed, 07 Sep 2022 23:02:36 -0400 Received: from woodpecker.gentoo.org ([140.211.166.183]:59082 helo=smtp.gentoo.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7oI-0001zy-ER for request@debbugs.gnu.org; Wed, 07 Sep 2022 23:02:34 -0400 From: Sam James Content-Type: multipart/signed; boundary="Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Message-Id: Date: Thu, 8 Sep 2022 04:02:16 +0100 To: request@debbugs.gnu.org X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: request 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: -1.3 (-) --Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii merge 57636 57665 --Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iNUEARYKAH0WIQQlpruI3Zt2TGtVQcJzhAn1IN+RkAUCYxlbOV8UgAAAAAAuAChp c3N1ZXItZnByQG5vdGF0aW9ucy5vcGVucGdwLmZpZnRoaG9yc2VtYW4ubmV0MjVB NkJCODhERDlCNzY0QzZCNTU0MUMyNzM4NDA5RjUyMERGOTE5MAAKCRBzhAn1IN+R kMmhAQC7HBQ9hpwSx2ZEkAUWaSc2m9TulPLL5RWsJ1qNaIV5eAEA3Jc88U/l+P+I rU7HoUNiKk2rZlxok3I+rQFF5h0hYQM= =/nCm -----END PGP SIGNATURE----- --Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304-- From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 23:55:24 2022 Received: (at control) by debbugs.gnu.org; 8 Sep 2022 03:55:24 +0000 Received: from localhost ([127.0.0.1]:56882 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW8dP-0005UJ-RN for submit@debbugs.gnu.org; Wed, 07 Sep 2022 23:55:24 -0400 Received: from mail-oa1-f53.google.com ([209.85.160.53]:38601) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW8dN-0005U3-Me for control@debbugs.gnu.org; Wed, 07 Sep 2022 23:55:21 -0400 Received: by mail-oa1-f53.google.com with SMTP id 586e51a60fabf-1278624b7c4so22938012fac.5 for ; Wed, 07 Sep 2022 20:55:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date; bh=RrtylMYLjVNXqKZ+xuYii00oo4vOIJJvQhuuB8122qU=; b=Ar54RiWP+BkCoqCTmgKEDfrs8UPm4f05nR+H6wm1X+9uD18eMXq7l86Mmf6RTgsYpp 5QoydbYeevf4D6Y1zUnvEbxW03/fx+gyDbosz/yVuj96IPDGwmI4+ccdwwfU5HoBl+4Z fPffYPToKx+Mta5lLnh0q0jFV3WMigwMce3oVVUYTVKONL2RKmHY7XSQMyWZZk2Md4of 2/yOSZrZ8aJfWVQigTyCCrJ7GbdwrNxCt0EMek82l+/z2zneg5z9zd+NN+aS+hid36Cd 3v1V3wO2rXe77xPjUDJSRYyU4/rnxdCXaDrp/9dRz5e7305ebkPIE5p60IzEKWlK1J5I 4//g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date; bh=RrtylMYLjVNXqKZ+xuYii00oo4vOIJJvQhuuB8122qU=; b=7HpFiRdSGhdAuarZE9wfB+9DtLhy/6Mfxs1O5gr+lEs2NBZtZoqCQjXluywGIpSFqE lvVtaoiRcd+6LAK+8jeMq29K1s0A6Q3m4N5XdVmCV+KAJmoarMzaiGyixFoGUWCXm3MR JOU9SuDlNAOWU3XNG3tg2wj9wCJuwP3QrszPEFxAxojLP8s3TzPc0TvPORk31hwTauXp q0l09F+FukUf3AZhZ9WCDOfps7T5qGUdJsIYdx5ELqCjI2gcq2omxiBmN01btMkeRWdW ZWqqynThGi1BvBC1WodvjQ73b+wnj00pq/vLdM3hYPNjf0uuO4hEa7KD0NrPb+TOsrPt PCVA== X-Gm-Message-State: ACgBeo3hn4lHcMxzcwPbJpnZQrg4tbzbi+zDSWkHoQB+oUCCEoqX0jgF haTSFbjWhnrBXvB6n1VZfDRGGgsBe9c1ylqhx7qoMMgwMTM= X-Google-Smtp-Source: AA6agR4/07OFM4fU3l/ybZjzmEaa7fpcv9m7bbQEyN5oDh5raW7iMlMVFzUzyuUgTA1GQvplt7LVF2Y2e+nEKxGyn+w= X-Received: by 2002:a05:6870:5581:b0:11e:300:8189 with SMTP id n1-20020a056870558100b0011e03008189mr832711oao.199.1662609315971; Wed, 07 Sep 2022 20:55:15 -0700 (PDT) MIME-Version: 1.0 From: Stefan Kangas Date: Thu, 8 Sep 2022 05:55:04 +0200 Message-ID: Subject: To: control Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: forcemerge 57636 57665 thanks Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (stefankangas[at]gmail.com) 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.160.53 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.160.53 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders -0.0 T_SCC_BODY_TEXT_LINE No description available. 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control 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: 1.0 (+) forcemerge 57636 57665 thanks From unknown Sat Aug 09 22:37:08 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 07 Oct 2022 11:24:08 +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