From unknown Sat Sep 20 08:01:28 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#54291 <54291@debbugs.gnu.org> To: bug#54291 <54291@debbugs.gnu.org> Subject: Status: zdiff can not handle options properly Reply-To: bug#54291 <54291@debbugs.gnu.org> Date: Sat, 20 Sep 2025 15:01:28 +0000 retitle 54291 zdiff can not handle options properly reassign 54291 gzip submitter 54291 CAKxHvy1w=3DubGoLSKcGe8mwU36MYjHvXLW_1j3=3DrBi9sLJNw8UQ@mai= l.gmail.com severity 54291 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 07 07:11:26 2022 Received: (at submit) by debbugs.gnu.org; 7 Mar 2022 12:11:26 +0000 Received: from localhost ([127.0.0.1]:52668 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRCCz-0004dd-6M for submit@debbugs.gnu.org; Mon, 07 Mar 2022 07:11:26 -0500 Received: from lists.gnu.org ([209.51.188.17]:49490) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nR9ja-0000ai-HY for submit@debbugs.gnu.org; Mon, 07 Mar 2022 04:32:54 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58144) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nR9ja-0004Oy-9r for bug-gzip@gnu.org; Mon, 07 Mar 2022 04:32:54 -0500 Received: from szxga08-in.huawei.com ([45.249.212.255]:3275) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nR9jV-0006de-Kj for bug-gzip@gnu.org; Mon, 07 Mar 2022 04:32:54 -0500 Received: from dggeme758-chm.china.huawei.com (unknown [172.30.72.57]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4KBtRM5NqFz1GCDX; Mon, 7 Mar 2022 17:27:59 +0800 (CST) Received: from [10.174.176.219] (10.174.176.219) by dggeme758-chm.china.huawei.com (10.3.19.104) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.21; Mon, 7 Mar 2022 17:32:45 +0800 To: , From: Lv Ying Subject: zdiff can not handle options properly Message-ID: Date: Mon, 7 Mar 2022 17:32:45 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.176.219] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To dggeme758-chm.china.huawei.com (10.3.19.104) X-CFilter-Loop: Reflected Received-SPF: pass client-ip=45.249.212.255; envelope-from=lvying6@huawei.com; helo=szxga08-in.huawei.com 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, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=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: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 07 Mar 2022 07:11:23 -0500 Cc: fanwentao@huawei.com, bug-gzip@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: , Reply-To: CAKxHvy1w=ubGoLSKcGe8mwU36MYjHvXLW_1j3=rBi9sLJNw8UQ@mail.gmail.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) As Bram Mertens mentioned in bug#35209: "diff -y -W 200 /tmp/b1 /tmp/b2". But when passed to zdiff the space between "-W" and 200 causes the COLUMNS argument to be interpreted as a file: zdiff -y -W 200 /tmp/b1 /tmp/b2 /bin/zdiff: 72: /bin/zdiff: cannot open 200: No such file I reproduce this problem in gzip 1.11: zdiff -y -W200 a.gz b.gz aaaa | bbbb zdiff -y -W 200 a.gz b.gz zdiff: line 66: 200: No such file or directory Also, file before options is not supported: zdiff a.gz b.gz -y -W200 zdiff: line 66: -y: No such file or directory diff a b -y -W 200 aaaa | bbbb This is because zdiff.in implement option parse is simple. zdiff.in first parse all the options by while loop. The use cmp="$cmp --" sperate options and file arguments. It is understandable that zdiff does not want to repeat the parameter parsing work of diff. So, use the simple option parse here. However, the usage string said "Do comparisons like 'diff' does." Such usage will misldead the user just as bug#35209 mentioned. There are two suggestions we may discuss: 1. update usage string, add detailed restricted instructions: e.g NO space between option and option argument, all the options should come before the filename parameter. 2. rewrite options parse function make it work just like diff. -- Thanks! Lv Ying From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 07 12:44:16 2022 Received: (at 54291-done) by debbugs.gnu.org; 7 Mar 2022 17:44:16 +0000 Received: from localhost ([127.0.0.1]:54593 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRHP6-0007Z3-FE for submit@debbugs.gnu.org; Mon, 07 Mar 2022 12:44:16 -0500 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:46634) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRHP4-0007Yj-GU for 54291-done@debbugs.gnu.org; Mon, 07 Mar 2022 12:44:15 -0500 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 3DC7A1601A8; Mon, 7 Mar 2022 09:44:08 -0800 (PST) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id X-aPc7HikYxU; Mon, 7 Mar 2022 09:44:07 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 66CF81601AB; Mon, 7 Mar 2022 09:44:07 -0800 (PST) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id tYn8soK3e4iq; Mon, 7 Mar 2022 09:44:07 -0800 (PST) Received: from [192.168.1.9] (cpe-172-91-119-151.socal.res.rr.com [172.91.119.151]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 33BA51601A8; Mon, 7 Mar 2022 09:44:07 -0800 (PST) Content-Type: multipart/mixed; boundary="------------UuLv0brUVm77PkhHVP5x8rAr" Message-ID: <5d0e0627-aec9-2ee1-93fc-6d269c9f33de@cs.ucla.edu> Date: Mon, 7 Mar 2022 09:44:06 -0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: bug#54291: zdiff can not handle options properly Content-Language: en-US To: CAKxHvy1w=ubGoLSKcGe8mwU36MYjHvXLW_1j3=rBi9sLJNw8UQ@mail.gmail.com References: From: Paul Eggert Organization: UCLA Computer Science Department In-Reply-To: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 54291-done Cc: fanwentao@huawei.com, mertensb.mazda@gmail.com, 54291-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 (---) This is a multi-part message in MIME format. --------------UuLv0brUVm77PkhHVP5x8rAr Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 3/7/22 01:32, Lv Ying via GNU gzip discussion and bug reports. wrote: > 2. rewrite options parse function make it work just like diff. Thanks for reporting the problem. I installed the attached to implement the above suggestion, and this should appear in the next gzip release. --------------UuLv0brUVm77PkhHVP5x8rAr Content-Type: text/x-patch; charset=UTF-8; name="0001-zdiff-fix-arg-handling-bug.patch" Content-Disposition: attachment; filename="0001-zdiff-fix-arg-handling-bug.patch" Content-Transfer-Encoding: base64 RnJvbSA0MGQ5NmQ4OTQwMDNmNGE2Y2UwN2JhZmJiN2ZmNjE0NTBlYzlkN2JjIE1vbiBTZXAg MTcgMDA6MDA6MDAgMjAwMQpGcm9tOiBQYXVsIEVnZ2VydCA8ZWdnZXJ0QGNzLnVjbGEuZWR1 PgpEYXRlOiBNb24sIDcgTWFyIDIwMjIgMDk6Mzg6MDggLTA4MDAKU3ViamVjdDogW1BBVENI XSB6ZGlmZjogZml4IGFyZyBoYW5kbGluZyBidWcKClByb2JsZW0gcmVwb3J0ZWQgYnkgTHYg WWluZyAoQnVnIzU0MjkxKS4KKiB6ZGlmZi5pbiAoZXNjYXBlKTogSGFuZGxlIGFyZ3MgbGlr ZSAnLUMgNScuCi0tLQogTkVXUyAgICAgfCAgNCArKysrCiB6ZGlmZi5pbiB8IDExICsrKysr KysrKystCiAyIGZpbGVzIGNoYW5nZWQsIDE0IGluc2VydGlvbnMoKyksIDEgZGVsZXRpb24o LSkKCmRpZmYgLS1naXQgYS9ORVdTIGIvTkVXUwppbmRleCAxOTA0OWY4Li4wNWI0MTY2IDEw MDY0NAotLS0gYS9ORVdTCisrKyBiL05FV1MKQEAgLTEyLDYgKzEyLDEwIEBAIEdOVSBnemlw IE5FV1MgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtKi0gb3V0bGluZSAt Ki0KICAgbXVjaCBtb3JlIHRpbWUsIG5vd2FkYXlzIHRoZSBjb3JyZWN0bmVzcyBwcm9zIHNl ZW0gdG8gb3V0d2VpZ2ggdGhlCiAgIHBlcmZvcm1hbmNlIGNvbnMuCiAKKyoqIEJ1ZyBmaXhl cworCisgICd6ZGlmZiAtQyA1JyBubyBsb25nZXIgbWlzYmVoYXZlcyBieSB0cmVhdGluZyAn NScgYXMgYSBmaWxlIG5hbWUuCisKIAogKiBOb3Rld29ydGh5IGNoYW5nZXMgaW4gcmVsZWFz ZSAxLjExICgyMDIxLTA5LTAzKSBbc3RhYmxlXQogCmRpZmYgLS1naXQgYS96ZGlmZi5pbiBi L3pkaWZmLmluCmluZGV4IDdjOTIyNTEuLmQ5ODJkOWYgMTAwNjQ0Ci0tLSBhL3pkaWZmLmlu CisrKyBiL3pkaWZmLmluCkBAIC00OSwxNCArNDksMjMgQEAgZXNjYXBlPScKICcKIAogd2hp bGUgOjsgZG8KKyAgYXJnZG9uZT06CiAgIGNhc2UgJDEgaW4KICAgLS1oKikgcHJpbnRmICcl c1xuJyAiJHVzYWdlIiAgIHx8IGV4aXQgMjsgZXhpdDs7CiAgIC0tdiopIHByaW50ZiAnJXNc bicgIiR2ZXJzaW9uIiB8fCBleGl0IDI7IGV4aXQ7OwogICAtLSkgc2hpZnQ7IGJyZWFrOzsK LSAgLSpcJyopIGNtcD0iJGNtcCAnImBwcmludGYgJyVzWFxuJyAiJDEiIHwgc2VkICIkZXNj YXBlImA7OworICAtKlwnKikgYXJnZG9uZT1mYWxzZSBhcmc9JDE7OworICAtW0NERklTVVdY eF0pCisgICAgY21wPSIkY21wICQxIgorICAgIGNhc2UgJHsyP30gaW4KKyAgICAtKlwnKikg YXJnZG9uZT1mYWxzZSBhcmc9JDI7OworICAgICopIGNtcD0iJGNtcCAnJDInIjs7CisgICAg ZXNhYworICAgIHNoaWZ0OzsKICAgLT8qKSBjbXA9IiRjbXAgJyQxJyI7OwogICAqKSBicmVh azs7CiAgIGVzYWMKKyAgJGFyZ2RvbmUgfHwgY21wPSIkY21wICciYHByaW50ZiAnJXNYXG4n ICIkYXJnIiB8IHNlZCAiJGVzY2FwZSJgCiAgIHNoaWZ0CiBkb25lCiBjbXA9IiRjbXAgLS0i Ci0tIAoyLjMyLjAKCg== --------------UuLv0brUVm77PkhHVP5x8rAr-- From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 07 17:00:25 2022 Received: (at control) by debbugs.gnu.org; 7 Mar 2022 22:00:25 +0000 Received: from localhost ([127.0.0.1]:54788 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRLOz-0001z7-G4 for submit@debbugs.gnu.org; Mon, 07 Mar 2022 17:00:25 -0500 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:44874) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRLOy-0001qo-Bb for control@debbugs.gnu.org; Mon, 07 Mar 2022 17:00:25 -0500 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 4D4F7160068 for ; Mon, 7 Mar 2022 14:00:18 -0800 (PST) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id Mgl85Dbryq4y for ; Mon, 7 Mar 2022 14:00:17 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id AA83E16006C for ; Mon, 7 Mar 2022 14:00:17 -0800 (PST) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id xqcgNlKv7eDE for ; Mon, 7 Mar 2022 14:00:17 -0800 (PST) Received: from [192.168.1.9] (cpe-172-91-119-151.socal.res.rr.com [172.91.119.151]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 7C856160068 for ; Mon, 7 Mar 2022 14:00:17 -0800 (PST) Message-ID: <06280cff-fa5f-897b-a229-846e2b8be0cf@cs.ucla.edu> Date: Mon, 7 Mar 2022 14:00:17 -0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: control@debbugs.gnu.org From: Paul Eggert Subject: 54290 and 54291 are duplicates Organization: UCLA Computer Science Department Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) 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: -3.3 (---) close 54290 merge 54290 54291 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 08 16:10:15 2022 Received: (at control) by debbugs.gnu.org; 8 Mar 2022 21:10:15 +0000 Received: from localhost ([127.0.0.1]:58037 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRh5z-0007EI-Gp for submit@debbugs.gnu.org; Tue, 08 Mar 2022 16:10:15 -0500 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:40182) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRh5y-0007Dx-9j for control@debbugs.gnu.org; Tue, 08 Mar 2022 16:10:14 -0500 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 0C210160068 for ; Tue, 8 Mar 2022 13:10:09 -0800 (PST) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id Td2Omc6yOQBd for ; Tue, 8 Mar 2022 13:10:08 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 71C6816006C for ; Tue, 8 Mar 2022 13:10:08 -0800 (PST) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 39wBYrs9Agp3 for ; Tue, 8 Mar 2022 13:10:08 -0800 (PST) Received: from [131.179.64.200] (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 56911160068 for ; Tue, 8 Mar 2022 13:10:08 -0800 (PST) Message-ID: <05654760-11f4-fdb1-c2d2-c2bcdf2c1d24@cs.ucla.edu> Date: Tue, 8 Mar 2022 13:10:08 -0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: GNU bug control From: Paul Eggert Subject: 54298 and 54290 are duplicates Organization: UCLA Computer Science Department Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) 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: -3.3 (---) close 54298 merge 54290 54298 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 29 20:08:00 2022 Received: (at control) by debbugs.gnu.org; 30 Mar 2022 00:08:00 +0000 Received: from localhost ([127.0.0.1]:33900 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nZLsW-0007XF-9k for submit@debbugs.gnu.org; Tue, 29 Mar 2022 20:08:00 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:47534) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nZLsU-0007X0-P4 for control@debbugs.gnu.org; Tue, 29 Mar 2022 20:07:59 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 745DD16005E for ; Tue, 29 Mar 2022 17:07:52 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id J7dwx_GKE39l for ; Tue, 29 Mar 2022 17:07:51 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id ED1E1160079 for ; Tue, 29 Mar 2022 17:07:49 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id gBMyLeZkvWsE for ; Tue, 29 Mar 2022 17:07:49 -0700 (PDT) Received: from [131.179.64.200] (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id ABC2916005E for ; Tue, 29 Mar 2022 17:07:49 -0700 (PDT) Message-ID: <75ed441e-97f8-a266-0ca8-df8f6da59550@cs.ucla.edu> Date: Tue, 29 Mar 2022 17:07:49 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Content-Language: en-US To: GNU bug control From: Paul Eggert Subject: gzip bug maintenance Organization: UCLA Computer Science Department Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) 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: -3.3 (---) merge 35209 54290 From unknown Sat Sep 20 08:01:28 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 27 Apr 2022 11:24:05 +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