From debbugs-submit-bounces@debbugs.gnu.org Sun May 15 17:32:51 2016 Received: (at submit) by debbugs.gnu.org; 15 May 2016 21:32:51 +0000 Received: from localhost ([127.0.0.1]:53037 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1b23ed-0001UZ-9P for submit@debbugs.gnu.org; Sun, 15 May 2016 17:32:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44394) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1b23ea-0001UJ-M0 for submit@debbugs.gnu.org; Sun, 15 May 2016 17:32:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b23eU-0004sp-Dg for submit@debbugs.gnu.org; Sun, 15 May 2016 17:32:43 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: * X-Spam-Status: No, score=2.0 required=5.0 tests=BAYES_20,XPRIO autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:41146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b23eU-0004sl-Ac for submit@debbugs.gnu.org; Sun, 15 May 2016 17:32:42 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b23eS-00072i-3p for bug-gnu-emacs@gnu.org; Sun, 15 May 2016 17:32:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b23eN-0004rX-QR for bug-gnu-emacs@gnu.org; Sun, 15 May 2016 17:32:38 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:31216) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b23eN-0004rH-Ih for bug-gnu-emacs@gnu.org; Sun, 15 May 2016 17:32:35 -0400 Received: from userv0022.oracle.com (userv0022.oracle.com [156.151.31.74]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id u4FLWW2S018298 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Sun, 15 May 2016 21:32:32 GMT Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by userv0022.oracle.com (8.14.4/8.13.8) with ESMTP id u4FLWWmO018536 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Sun, 15 May 2016 21:32:32 GMT Received: from abhmp0003.oracle.com (abhmp0003.oracle.com [141.146.116.9]) by userv0122.oracle.com (8.14.4/8.14.4) with ESMTP id u4FLWVVA012169 for ; Sun, 15 May 2016 21:32:32 GMT MIME-Version: 1.0 Message-ID: Date: Sun, 15 May 2016 14:32:30 -0700 (PDT) From: Drew Adams To: bug-gnu-emacs@gnu.org Subject: 25.1.50; Incorrect key binding echoed by `M-x' X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.9 (901082) [OL 12.0.6744.5000 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Source-IP: userv0022.oracle.com [156.151.31.74] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -2.0 (--) 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: -4.0 (----) emacs -Q (define-key global-map [remap eval-last-sexp] 'pp-eval-last-sexp) Put point after a Lisp sexp somewhere, and do `M-x eval-last-sexp'. You see this echoed: You can run the command 'eval-last-sexp' with C-x C-e But that is incorrect. You cannot run `eval-last-sexp' using `C-x C-e', since it has been remapped to command `pp-eval-last-sexp'. If you use `C-x C-e' you invoke the latter, not `eval-last-sexp'. The code that causes this bugged behavior is the call to `where-is-internal' in `execute-extended-command'. It does, in effect: (where-is-internal 'eval-last-sexp overriding-local-map t) And that returns [24 5]. I'm no expert on `overriding-local-map', but should it really be used here? Seems like this is the cause, but whatever the cause, the message is incorrect. In GNU Emacs 25.1.50.1 (i686-pc-mingw32) of 2015-12-10 Repository revision: 6148555ee5a3d0139ae517803718b3e0357933c7 Windowing system distributor 'Microsoft Corp.', version 6.1.7601 Configured using: 'configure --prefix=3D/c/Devel/emacs/snapshot/trunk --enable-checking=3Dye= s --enable-check-lisp-object-type --without-compress-install 'CFLAGS=3D-Og -ggdb3' LDFLAGS=3D-Lc:/Devel/emacs/lib 'CPPFLAGS=3D-DGC_MCHECK=3D1 -Ic:/Devel/emacs/include'' From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 28 08:39:42 2019 Received: (at 23543) by debbugs.gnu.org; 28 Jul 2019 12:39:42 +0000 Received: from localhost ([127.0.0.1]:45898 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hriSk-000335-5I for submit@debbugs.gnu.org; Sun, 28 Jul 2019 08:39:42 -0400 Received: from quimby.gnus.org ([80.91.231.51]:55288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hriSh-00032s-EM for 23543@debbugs.gnu.org; Sun, 28 Jul 2019 08:39:40 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hriSc-0003z2-VA; Sun, 28 Jul 2019 14:39:37 +0200 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#23543: 25.1.50; Incorrect key binding echoed by `M-x' References: Date: Sun, 28 Jul 2019 14:39:34 +0200 In-Reply-To: (Drew Adams's message of "Sun, 15 May 2016 14:32:30 -0700 (PDT)") Message-ID: <87r26abaex.fsf@mouse.gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: Drew Adams writes: > emacs -Q > > (define-key global-map [remap eval-last-sexp] 'pp-eval-last-sexp) > > Put point after a Lisp sexp somewhere, and do `M-x eval-last-sexp'. > > You see this echoed: > > You can run the co [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 23543 Cc: 23543@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: -1.0 (-) Drew Adams writes: > emacs -Q > > (define-key global-map [remap eval-last-sexp] 'pp-eval-last-sexp) > > Put point after a Lisp sexp somewhere, and do `M-x eval-last-sexp'. > > You see this echoed: > > You can run the command 'eval-last-sexp' with C-x C-e > > But that is incorrect. You cannot run `eval-last-sexp' > using `C-x C-e', since it has been remapped to command > `pp-eval-last-sexp'. If you use `C-x C-e' you invoke > the latter, not `eval-last-sexp'. I can confirm that this is still present in Emacs 27. > The code that causes this bugged behavior is the call > to `where-is-internal' in `execute-extended-command'. > It does, in effect: > > (where-is-internal 'eval-last-sexp overriding-local-map t) > > And that returns [24 5]. I'm no expert on `overriding-local-map', > but should it really be used here? Seems like this is the cause, > but whatever the cause, the message is incorrect. When I trace this, `overriding-local-map' is nil, and indeed: (where-is-internal 'eval-last-sexp) => ([24 5]) So that doesn't seem to have anything to do with this bug, and it's just a bug in `where-is-internal'. The doc string does talk about remapping, but I'm not sure whether this is the same kind of remapping we have here? In any case, it doesn't make a difference: The optional 5th arg NO-REMAP alters how command remapping is handled: - If another command OTHER-COMMAND is remapped to DEFINITION, normally search for the bindings of OTHER-COMMAND and include them in the returned list. But if NO-REMAP is non-nil, include the vector [remap OTHER-COMMAND] in the returned list instead, without searching for those other bindings. - If DEFINITION is remapped to OTHER-COMMAND, normally return the bindings for OTHER-COMMAND. But if NO-REMAP is non-nil, return the bindings for DEFINITION instead, ignoring its remapping. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 28 08:39:45 2019 Received: (at control) by debbugs.gnu.org; 28 Jul 2019 12:39:45 +0000 Received: from localhost ([127.0.0.1]:45901 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hriSn-00033L-Gw for submit@debbugs.gnu.org; Sun, 28 Jul 2019 08:39:45 -0400 Received: from quimby.gnus.org ([80.91.231.51]:55302) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hriSl-00033D-V8 for control@debbugs.gnu.org; Sun, 28 Jul 2019 08:39:44 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hriSj-00041L-D2 for control@debbugs.gnu.org; Sun, 28 Jul 2019 14:39:43 +0200 Date: Sun, 28 Jul 2019 14:39:40 +0200 Message-Id: <87pnlubaer.fsf@mouse.gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #23543 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: tags 23543 + confirmed quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) 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 (-) tags 23543 + confirmed quit From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 19 20:00:46 2021 Received: (at control) by debbugs.gnu.org; 20 Oct 2021 00:00:46 +0000 Received: from localhost ([127.0.0.1]:52294 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcz2E-0002iQ-1v for submit@debbugs.gnu.org; Tue, 19 Oct 2021 20:00:46 -0400 Received: from mail-pl1-f179.google.com ([209.85.214.179]:44008) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcz1w-0002hp-Tl for control@debbugs.gnu.org; Tue, 19 Oct 2021 20:00:44 -0400 Received: by mail-pl1-f179.google.com with SMTP id y1so14837150plk.10 for ; Tue, 19 Oct 2021 17:00:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:mime-version:date:message-id:subject:to; bh=1VufXxHpQC3ZN5r8OWKveGNhgn8WO4lg4LEnUukEQWM=; b=OWDpBpxh6alwgkhlEFJj4Djr+BMdukYpnVqJHwh+ZFO7E8HAJHLJmmpnKwLhBR5cYE 94GCArDHa41GpeW3K1390MO5Y1sEiSKNelGX9CFlqJsmVIX3YIJmwPkBEQBzauxKRC52 6yxYIftQ3o2z06Ru6p9a22DQb7BwcLpRDCfa+vpTl+JkbcJVKNxJZtZP3C130ETUYXL1 XLIC9XcLwIeMuVx1EbWo1tM9K1gNSE/6bOdsRtCZcxveguty0u9Z/6V6FWqm02FHgpo9 n5mwiKt5naTbcTqGDr7B5P9D0uuQYg0xynyFMe0uJtyZnig/hTNgweVgBukyC6Wz/DYm hamQ== X-Gm-Message-State: AOAM530Rp/7Xpn6xr6u+Y1HtHknzmd26iE8QRNnYc78S02BdGEqqOhmY pIZ4LppeCjwjRup84p/2eir795ptRnYBQqrX37dqImDg X-Google-Smtp-Source: ABdhPJzFlyMooqfL1BWFWo6yMsCzgZxqxgHOx72dDNo+5kxuGLuHVRMZ5HXxHoUmKY9crLk21V7Y59JB3lhAtXWYrI4= X-Received: by 2002:a17:902:b691:b029:12d:2b6:d116 with SMTP id c17-20020a170902b691b029012d02b6d116mr35628372pls.71.1634688023013; Tue, 19 Oct 2021 17:00:23 -0700 (PDT) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Tue, 19 Oct 2021 17:00:22 -0700 From: Stefan Kangas MIME-Version: 1.0 Date: Tue, 19 Oct 2021 17:00:22 -0700 Message-ID: Subject: control message for bug #42207 To: control@debbugs.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.5 (/) 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: -0.5 (/) forcemerge 23543 42207 quit From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 06 10:43:49 2022 Received: (at 23543) by debbugs.gnu.org; 6 Jun 2022 14:43:49 +0000 Received: from localhost ([127.0.0.1]:36449 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyDxN-0000YT-9x for submit@debbugs.gnu.org; Mon, 06 Jun 2022 10:43:49 -0400 Received: from quimby.gnus.org ([95.216.78.240]:41140) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyDxK-0000Xv-JN; Mon, 06 Jun 2022 10:43:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=BZ/vUNgniviwCiVux9ftfbOjxr71iwsPhxquY2tt3UM=; b=fUwsiX45YDTMMd8BON2p+Sio80 vP6aOsi94sL3E7VYJHzXkkFhZobsMyv6KHrn/pLluNtAIcZx3x6IW2TeEZn+kFsJ9JdQ1knM461fF 6qkxJcSvETTFm2cJoFGILtKuExQEeGO0YB7/zQ2I7ELzpmjZbqeH9F9yjFHQ6b/ZvONU=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nyDxB-0004EB-8P; Mon, 06 Jun 2022 16:43:39 +0200 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#42207: 28.0.50; (where-is-internal) reports incorrect binding References: <87r26abaex.fsf@mouse.gnus.org> X-Now-Playing: Gosane's _Tuxedomooning: A Tribute_: "Desire" Date: Mon, 06 Jun 2022 16:43:36 +0200 In-Reply-To: <87r26abaex.fsf@mouse.gnus.org> (Lars Ingebrigtsen's message of "Sun, 28 Jul 2019 14:39:34 +0200") Message-ID: <87r141svhj.fsf_-_@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: Lars Ingebrigtsen writes: >> (define-key global-map [remap eval-last-sexp] 'pp-eval-last-sexp) >> >> Put point after a Lisp sexp somewhere, and do `M-x eval-last-sexp'. >> >> You see this echoed: >> >> You can run the command [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 23543 Cc: 42207@debbugs.gnu.org, 23543@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 (---) Lars Ingebrigtsen writes: >> (define-key global-map [remap eval-last-sexp] 'pp-eval-last-sexp) >> >> Put point after a Lisp sexp somewhere, and do `M-x eval-last-sexp'. >> >> You see this echoed: >> >> You can run the command 'eval-last-sexp' with C-x C-e >> >> But that is incorrect. You cannot run `eval-last-sexp' >> using `C-x C-e', since it has been remapped to command >> `pp-eval-last-sexp'. If you use `C-x C-e' you invoke >> the latter, not `eval-last-sexp'. > > I can confirm that this is still present in Emacs 27. I've now fixed this in Emacs 29. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 06 10:43:57 2022 Received: (at control) by debbugs.gnu.org; 6 Jun 2022 14:43:58 +0000 Received: from localhost ([127.0.0.1]:36454 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyDxS-0000Yt-Nm for submit@debbugs.gnu.org; Mon, 06 Jun 2022 10:43:57 -0400 Received: from quimby.gnus.org ([95.216.78.240]:41154) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyDxR-0000YJ-B3 for control@debbugs.gnu.org; Mon, 06 Jun 2022 10:43:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=tr+o1UfcouPF1h+hh5oqM6Cs52IWSMK2quIvMvaRIS0=; b=op9ZAxLcAkbfjd6XzyWDLdhdfA iGJtw/EMu0aOgyNMiO5Ch24LHEXix+WQsPEj5N99uF5QQ7Ume7FlLT785vISIMGCXCYFu4Ou9i9fQ 3VZ8MPf9TDGUxW9QZ8l9uOCjJZnzN4ci05H/l1+LF6fiDDNT0jfgkJgb7jBQpSsL71ME=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nyDxJ-0004EI-HN for control@debbugs.gnu.org; Mon, 06 Jun 2022 16:43:47 +0200 Date: Mon, 06 Jun 2022 16:43:43 +0200 Message-Id: <87pmjlsvhc.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #42207 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: close 42207 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 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 42207 29.1 quit From unknown Tue Aug 19 05:28:47 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, 05 Jul 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