From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 18 17:17:18 2010 Received: (at submit) by debbugs.gnu.org; 18 Jun 2010 21:17:19 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OPiwA-0007W0-A3 for submit@debbugs.gnu.org; Fri, 18 Jun 2010 17:17:18 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OPiw8-0007Vv-4B for submit@debbugs.gnu.org; Fri, 18 Jun 2010 17:17:16 -0400 Received: from lists.gnu.org ([199.232.76.165]:38509) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OPiw3-00025P-QV for submit@debbugs.gnu.org; Fri, 18 Jun 2010 17:17:11 -0400 Received: from [140.186.70.92] (port=36145 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OPivy-000575-RV for bug-gnu-emacs@gnu.org; Fri, 18 Jun 2010 17:17:11 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OPivu-00032p-4Y for bug-gnu-emacs@gnu.org; Fri, 18 Jun 2010 17:17:06 -0400 Received: from mail-yw0-f192.google.com ([209.85.211.192]:61955) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OPivu-00032V-0M for bug-gnu-emacs@gnu.org; Fri, 18 Jun 2010 17:17:02 -0400 Received: by ywh30 with SMTP id 30so1497647ywh.24 for ; Fri, 18 Jun 2010 14:17:01 -0700 (PDT) MIME-Version: 1.0 Received: by 10.150.104.2 with SMTP id b2mr1701133ybc.162.1276895820869; Fri, 18 Jun 2010 14:17:00 -0700 (PDT) Received: by 10.151.10.5 with HTTP; Fri, 18 Jun 2010 14:17:00 -0700 (PDT) Date: Fri, 18 Jun 2010 17:17:00 -0400 X-Google-Sender-Auth: Mx7BUResOaah1R1osQWas6AZC9o Message-ID: Subject: `disabled-command-function' corrupts the `help-xref-stack' From: MON KEY To: bug-gnu-emacs@gnu.org Content-Type: text/plain; charset=UTF-8 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -3.7 (---) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.0 (-----) The `disabled-command-function's window-excursion via `help-setup-xref'->`with-output-to-temp-buffer' can corrupt the `help-xref-stack' b/c/ of with these lines: ,---- | (help-setup-xref (list 'disabled-command-function cmd keys) nil) | (with-output-to-temp-buffer "*Disabled Command*" ;; (help-buffer) `---- The present functionality is brainded because the "*Disabled Command*" stays on the `help-xref-stack'. This is stupid because `disabled-command-function' grabs all keyboard input except `keyboard-quit' so it is not realistic for the user to inspect the `goal-column' variable via `help-mode's xrefs anyway. Moreover, because `with-output-to-temp-buffer' spits its message to the "*Disabled-Command*" buffer we now have a broken/compromized `help-xref-stack' _and_ a lingering "*Disabled-Command*" buffer which lacks any buttonized navigation (though these buttons wouldn't function correctly even if they were there) Noteic, the commented sources above indicate that at some point the output may have gone to the value of (help-buffer). Though, I don't quite get why `disabled-command-function' is be piggybacking on `help-setup-xref' in the first place. Regardless, disabled-command-function should take care better care to clean up after itself by: a) removing itself from the `help-xref-stack' b) detecting inside an unwind-protect whether `last-command' was a `keyboard-quit' and if so automatically deleting itself (no questions asked). You've already stolen my keyboard out from under me, there is no reason to leave this buffer laying around esp. as its gonna keep popping up again and again anyways. A recipe to reproduce the offending behavior: (progn (when (get-buffer "*Help*") (kill-buffer (get-buffer "*Help*"))) (unless (get 'set-goal-column 'disabled) (put 'set-goal-column 'disabled t)) (describe-function 'enable-command) (with-current-buffer (get-buffer "*Help*") (describe-function 'disabled-command-function) (help-go-back)) (pop-to-buffer (get-buffer "*Help*"))) Tickle the command-loop to trigger on `set-goal-column' by typing: "C-x C-n" Tell the `disabled-command-function' to get f*cked by typing: "n" Remap `set-goal-column' to something irrelevant: (define-key ctl-x-map [remap set-goal-column] 'ignore) Now navigate through the `help-xref-stack' with either: "C-c C-b" `help-go-back' "C-C C-f" `help-go-forward' You should eventually run into the "*Disabled Command*" buffer. At which point `disabled-command-function' should then proceed to grab your keyboard and ask you to "select Y/N SPC !". Tell it to get f*cked again. (try "C-k" this time just for kicks) Scratch head for a moment before determining that while the following will fix one problem it will create others: (setq disabled-command-function 'ignore) ;; 'undefined) Cleanup the mess we've made by putting `set-goal-column' back on the ctl-x-map and enable/disable it: (define-key ctl-x-map "\C-n" 'set-goal-column) (put 'set-goal-column 'disabled { nil | t } )) Verified with Emacs "23.2.1" emacs -Q Verified current through lisp/novice.el sources circa bzr revision 100577 -- /s_P\ From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 03 12:57:11 2011 Received: (at 6462) by debbugs.gnu.org; 3 Mar 2011 17:57:11 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PvClz-0007np-E6 for submit@debbugs.gnu.org; Thu, 03 Mar 2011 12:57:11 -0500 Received: from mail-ww0-f46.google.com ([74.125.82.46]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PvClx-0007nZ-HK; Thu, 03 Mar 2011 12:57:10 -0500 Received: by wwc33 with SMTP id 33so1665716wwc.15 for ; Thu, 03 Mar 2011 09:57:03 -0800 (PST) MIME-Version: 1.0 Received: by 10.216.182.212 with SMTP id o62mr903116wem.52.1299175023456; Thu, 03 Mar 2011 09:57:03 -0800 (PST) Received: by 10.216.26.4 with HTTP; Thu, 3 Mar 2011 09:57:03 -0800 (PST) Date: Thu, 3 Mar 2011 12:57:03 -0500 X-Google-Sender-Auth: wDq8_sPVBDwOdk46GeKwm9HqlEs Message-ID: Subject: Re: bug#8147: 24.0.50; Inserting *Help* buffer can lead to data loss From: MON KEY To: 8147@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -3.7 (---) X-Debbugs-Envelope-To: 6462 Cc: 6462@debbugs.gnu.org, Stephen Berman , Stefan Monnier X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.7 (---) ,---- | 5. Click on one of the buttons in the inserted text that links to | another doc string, e.g. `try-completion'. `---- Unmentioned, but probably relevant is that clicking on these buttons will likely corrupt the `help-xref-stack' as well... See for example bug #6462 `disabled-command-function' corrupts the `help-xref-stack' http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6462 -- /s_P\ From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 03 04:43:26 2021 Received: (at 6462) by debbugs.gnu.org; 3 Jun 2021 08:43:26 +0000 Received: from localhost ([127.0.0.1]:42197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loiwo-0003g6-GQ for submit@debbugs.gnu.org; Thu, 03 Jun 2021 04:43:26 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loiwm-0003fn-DG for 6462@debbugs.gnu.org; Thu, 03 Jun 2021 04:43:25 -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=EDCzuRZfDisU8n1HzUgIQD7WGMVL6XuPUMVET61rkbI=; b=M99NHwhx/L2m+NYoKqNPKspOXR 80jtQFTbk/6R+Zu7tz3JqaVya+JML37UMkrVqocviEZvLwadWuxA5UFCnOgL0iIp1umijKGAnqW64 eK0tk7nRGb/7P9hbvKrdc9LwIrSkQWTEvyB4SHzDFX3IkWOuqLXniC7zasCoQhisCEvA=; Received: from cm-84.212.220.105.getinternet.no ([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 1loiwd-0008R2-WA; Thu, 03 Jun 2021 10:43:18 +0200 From: Lars Ingebrigtsen To: MON KEY Subject: Re: bug#6462: `disabled-command-function' corrupts the `help-xref-stack' References: X-Now-Playing: Little Simz's _Grey Area_: "Offence" Date: Thu, 03 Jun 2021 10:43:15 +0200 In-Reply-To: (MON KEY's message of "Fri, 18 Jun 2010 17:17:00 -0400") Message-ID: <87bl8n8hjw.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.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: MON KEY writes: > A recipe to reproduce the offending behavior: > > (progn > (when (get-buffer "*Help*") > (kill-buffer (get-buffer "*Help*"))) > (unless (get 'set-goal-column 'disabled) > (put 'set-goal-column 'disa [...] 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.7 (/) X-Debbugs-Envelope-To: 6462 Cc: 6462@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.7 (-) MON KEY writes: > A recipe to reproduce the offending behavior: > > (progn > (when (get-buffer "*Help*") > (kill-buffer (get-buffer "*Help*"))) > (unless (get 'set-goal-column 'disabled) > (put 'set-goal-column 'disabled t)) > (describe-function 'enable-command) > (with-current-buffer (get-buffer "*Help*") > (describe-function 'disabled-command-function) > (help-go-back)) > (pop-to-buffer (get-buffer "*Help*"))) > > Tickle the command-loop to trigger on `set-goal-column' by typing: > > "C-x C-n" > > Tell the `disabled-command-function' to get f*cked by typing: > > "n" > > Remap `set-goal-column' to something irrelevant: > > (define-key ctl-x-map [remap set-goal-column] 'ignore) > > Now navigate through the `help-xref-stack' with either: > "C-c C-b" `help-go-back' > "C-C C-f" `help-go-forward' > > You should eventually run into the "*Disabled Command*" buffer. (I'm going through old bug reports that unfortunately got no response at the time.) I'm trying to follow the recipe, but you lost me here -- I just get "no previous help buffer". Are you still seeing this problem in more recent Emacs versions? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 03 04:43:29 2021 Received: (at control) by debbugs.gnu.org; 3 Jun 2021 08:43:29 +0000 Received: from localhost ([127.0.0.1]:42200 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loiwr-0003gL-O6 for submit@debbugs.gnu.org; Thu, 03 Jun 2021 04:43:29 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40228) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loiwq-0003fw-G9 for control@debbugs.gnu.org; Thu, 03 Jun 2021 04:43:28 -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=anQejW29oIbqLP72U+ssxQ+zoNOLrZt6p92Tze101Sk=; b=Zm4RUSDXkZcm4Isjo87JVrXwt0 Qzdu6ovK+aGbMyTFToKsoEdKINtAVsvo3rouNY9S5fwk4kFA+V6rWpQfm2feQOc34xT0/JFf2Ejfq sj4UX+fWjHgOu3zgs4MwqtFZ/LgrWrjWC8e47o05IJvsTUqA8wSxciZIC8isQm3f9OfA=; Received: from cm-84.212.220.105.getinternet.no ([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 1loiwj-0008RC-2v for control@debbugs.gnu.org; Thu, 03 Jun 2021 10:43:22 +0200 Date: Thu, 03 Jun 2021 10:43:20 +0200 Message-Id: <87a6o78hjr.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #6462 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 6462 + moreinfo 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.7 (/) 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.7 (-) tags 6462 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 01 07:43:20 2021 Received: (at 6462) by debbugs.gnu.org; 1 Jul 2021 11:43:20 +0000 Received: from localhost ([127.0.0.1]:59738 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyv6G-0000do-IF for submit@debbugs.gnu.org; Thu, 01 Jul 2021 07:43:20 -0400 Received: from quimby.gnus.org ([95.216.78.240]:39576) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyv6F-0000dZ-EN for 6462@debbugs.gnu.org; Thu, 01 Jul 2021 07:43:19 -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=oewewoEQXRExakoi6eMzDDUjz1KK/G5TGKWbG0Csr+M=; b=nyLQOoLmgD9HFewrNp57s++sjb UKaK5sW5aMNKj5Sm598JO0ZOfSWnw4DqNuhSX8ROeESR94xScPLiQ/+ilkgtEABO8tgLRIzytRVtZ LQFVb5ZGDKnCS1i8fD1bWfYBIHw0wwi1gCXCaMl2J9U/HjziiVTFykkjRRWqE1YR5B+Y=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lyv66-0004Fh-N0; Thu, 01 Jul 2021 13:43:13 +0200 From: Lars Ingebrigtsen To: MON KEY Subject: Re: bug#6462: `disabled-command-function' corrupts the `help-xref-stack' References: <87bl8n8hjw.fsf@gnus.org> X-Now-Playing: Jane Siberry's _When I Was A Boy_: "An Angel Stepped Down (And Slowly Looked Around)" Date: Thu, 01 Jul 2021 13:43:10 +0200 In-Reply-To: <87bl8n8hjw.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 03 Jun 2021 10:43:15 +0200") Message-ID: <8735sy1cq9.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.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: > I'm trying to follow the recipe, but you lost me here -- I just get "no > previous help buffer". > > Are you still seeing this problem in more recent Emacs versions? 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: 6462 Cc: 6462@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: > I'm trying to follow the recipe, but you lost me here -- I just get "no > previous help buffer". > > Are you still seeing this problem in more recent Emacs versions? More information was requested, but no response was given within a month, so I'm closing this bug report. If the problem still exists, please respond to this email and we'll reopen the bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 01 07:43:24 2021 Received: (at control) by debbugs.gnu.org; 1 Jul 2021 11:43:25 +0000 Received: from localhost ([127.0.0.1]:59741 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyv6K-0000e4-PS for submit@debbugs.gnu.org; Thu, 01 Jul 2021 07:43:24 -0400 Received: from quimby.gnus.org ([95.216.78.240]:39590) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyv6J-0000de-6g for control@debbugs.gnu.org; Thu, 01 Jul 2021 07:43:23 -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=7z4d4jh6Ii8Z1PE8Qh+rJ97AJxEOsjiVhbazXIYse/A=; b=NFA0Du2wrBucnyB8zhmXqA4nCS 4EbBcFKxaWR/cWVxL2sO2Y5SyjaXZauE5fVQz048UiNBsv3kkrmClKKdiMX55qOH0qIF/kt6c6gZf YfLWyAQywuEb/T2AEmiMxB845QjYKHAIhR235KWSB9gTiBhptcMZ9TNw986XqYS//vyA=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lyv6B-0004Ft-Iw for control@debbugs.gnu.org; Thu, 01 Jul 2021 13:43:17 +0200 Date: Thu, 01 Jul 2021 13:43:15 +0200 Message-Id: <871r8i1cq4.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #6462 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 6462 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 6462 quit From unknown Fri Jun 20 20:11:40 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, 30 Jul 2021 11:24:07 +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