From unknown Sun Jun 22 20:57:13 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#32278 <32278@debbugs.gnu.org> To: bug#32278 <32278@debbugs.gnu.org> Subject: Status: 27.0.50; replace-buffer-contents calls change functions with wrong arguments Reply-To: bug#32278 <32278@debbugs.gnu.org> Date: Mon, 23 Jun 2025 03:57:13 +0000 retitle 32278 27.0.50; replace-buffer-contents calls change functions with = wrong arguments reassign 32278 emacs submitter 32278 Micha=C5=82 Kondraciuk severity 32278 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 26 08:05:03 2018 Received: (at submit) by debbugs.gnu.org; 26 Jul 2018 12:05:03 +0000 Received: from localhost ([127.0.0.1]:58439 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fif0w-0002tz-R8 for submit@debbugs.gnu.org; Thu, 26 Jul 2018 08:05:03 -0400 Received: from eggs.gnu.org ([208.118.235.92]:41305) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fif0t-0002tR-Fb for submit@debbugs.gnu.org; Thu, 26 Jul 2018 08:04:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fif0l-0000Od-G9 for submit@debbugs.gnu.org; Thu, 26 Jul 2018 08:04:54 -0400 Received: from lists.gnu.org ([2001:4830:134:3::11]:43919) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fif0l-0000OL-CL for submit@debbugs.gnu.org; Thu, 26 Jul 2018 08:04:51 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fif0i-0003Qj-4H for bug-gnu-emacs@gnu.org; Thu, 26 Jul 2018 08:04:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fif0f-0000Fb-3v for bug-gnu-emacs@gnu.org; Thu, 26 Jul 2018 08:04:48 -0400 Received: from sender-pp-092.zoho.com ([135.84.80.237]:25446) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fif0e-000094-R7 for bug-gnu-emacs@gnu.org; Thu, 26 Jul 2018 08:04:45 -0400 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=to:from:subject:message-id:date:user-agent:mime-version:content-type; b=dv3Z4s/GrlJXk7tpHjglW4TWLfwLRiWlTrQ+y/I6ZTn/VKzH6kxJ6d9wq8YXOjlvbd6E81NyhBCN 6BeREtobDzH30NsRBtG/uyufKekvToPDB2IHMWIIiSpwZtOzHAJe Received: from [192.168.0.87] (84-10-171-192.static.chello.pl [84.10.171.192]) by mx.zohomail.com with SMTPS id 1532535476116915.2593914125774; Wed, 25 Jul 2018 09:17:56 -0700 (PDT) To: bug-gnu-emacs@gnu.org From: =?UTF-8?Q?Micha=c5=82_Kondraciuk?= Subject: 27.0.50; replace-buffer-contents calls change functions with wrong arguments Message-ID: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> Date: Wed, 25 Jul 2018 18:17:53 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-ZohoMailClient: External X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.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: -5.0 (-----) When I evaluate the sexp below in emacs -Q, I get unexpected arguments passed to change functions. (with-current-buffer "*scratch*" (erase-buffer) (insert "foo") (add-hook 'before-change-functions (lambda (&rest args) (message "before %s" args)) nil t) (add-hook 'after-change-functions (lambda (&rest args) (message "after %s" args)) nil t) (with-temp-buffer (insert "ffooo") (let ((replacement (current-buffer))) (with-current-buffer "*scratch*" (replace-buffer-contents replacement))))) The only messages I get are: before (4 4) after (4 6 0) I would expect something like: before (1 1) ;before inserting f in front after (1 2 0) ;after inserting f in front before (5 5) ;before inserting o at the end after (5 6 0) ;after inserting o at the end Or maybe something like this: before (1 4) after (1 6 3) Or anything else that would allow me to incrementally build a buffer with the same contents as source buffer using just change functions. Repository revision: c67407e7520a97a92737200bf559c48a927db470 From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 27 06:06:24 2018 Received: (at 32278) by debbugs.gnu.org; 27 Jul 2018 10:06:24 +0000 Received: from localhost ([127.0.0.1]:59592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fizdg-0006rL-0M for submit@debbugs.gnu.org; Fri, 27 Jul 2018 06:06:24 -0400 Received: from eggs.gnu.org ([208.118.235.92]:41361) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fizde-0006r9-HM for 32278@debbugs.gnu.org; Fri, 27 Jul 2018 06:06:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fizdW-0000Nw-4n for 32278@debbugs.gnu.org; Fri, 27 Jul 2018 06:06:17 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:48760) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fizdW-0000NY-1R; Fri, 27 Jul 2018 06:06:14 -0400 Received: from [176.228.60.248] (port=2060 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fizdV-0000bI-54; Fri, 27 Jul 2018 06:06:13 -0400 Date: Fri, 27 Jul 2018 13:06:13 +0300 Message-Id: <83in51ro16.fsf@gnu.org> From: Eli Zaretskii To: =?utf-8?Q?Micha=C5=82?= Kondraciuk In-reply-to: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> (message from =?utf-8?Q?Micha=C5=82?= Kondraciuk on Wed, 25 Jul 2018 18:17:53 +0200) Subject: Re: bug#32278: 27.0.50; replace-buffer-contents calls change functions with wrong arguments References: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 32278 Cc: 32278@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: -6.0 (------) > From: Michał Kondraciuk > Date: Wed, 25 Jul 2018 18:17:53 +0200 > > When I evaluate the sexp below in emacs -Q, I get unexpected arguments > passed to change functions. > > (with-current-buffer "*scratch*" > (erase-buffer) > (insert "foo") > > (add-hook 'before-change-functions > (lambda (&rest args) (message "before %s" args)) nil t) > (add-hook 'after-change-functions > (lambda (&rest args) (message "after %s" args)) nil t) > > (with-temp-buffer > (insert "ffooo") > (let ((replacement (current-buffer))) > (with-current-buffer "*scratch*" > (replace-buffer-contents replacement))))) > > The only messages I get are: > > before (4 4) > after (4 6 0) > > I would expect something like: > > before (1 1) ;before inserting f in front > after (1 2 0) ;after inserting f in front > before (5 5) ;before inserting o at the end > after (5 6 0) ;after inserting o at the end > > Or maybe something like this: > > before (1 4) > after (1 6 3) > > Or anything else that would allow me to incrementally build a buffer > with the same contents as source buffer using just change functions. Thanks. I just threw away the attempt to be smarter about where the changes are done, and went back to the original code that announces changes in the entire region. If anyone wants to add smarter code, they should do this on master. From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 27 07:25:05 2018 Received: (at 32278) by debbugs.gnu.org; 27 Jul 2018 11:25:05 +0000 Received: from localhost ([127.0.0.1]:59651 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fj0ro-0000Nv-RD for submit@debbugs.gnu.org; Fri, 27 Jul 2018 07:25:05 -0400 Received: from sender-pp-092.zoho.com ([135.84.80.237]:25308) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fj0rm-0000NM-CC for 32278@debbugs.gnu.org; Fri, 27 Jul 2018 07:25:02 -0400 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=subject:to:cc:references:from:message-id:date:user-agent:mime-version:in-reply-to:content-type; b=Rocny5DhaBnWCrIffa2Lv5WakclQbzjkCh9uOQE8msMcfTb/MOsG+HEmnFpuiZ01CQLRQSkHrJ+j emr5SjqR2UXriIArTrxbz9xwKTR8iNlRjqVYIkxtWkJu45MxZM96 Received: from [192.168.0.87] (84-10-171-192.static.chello.pl [84.10.171.192]) by mx.zohomail.com with SMTPS id 1532690675853797.294481800686; Fri, 27 Jul 2018 04:24:35 -0700 (PDT) Subject: Re: bug#32278: 27.0.50; replace-buffer-contents calls change functions with wrong arguments To: Eli Zaretskii References: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> <83in51ro16.fsf@gnu.org> From: =?UTF-8?Q?Micha=c5=82_Kondraciuk?= Message-ID: <1ef81ec1-855d-50fe-e96f-4b3059b6dba6@zoho.com> Date: Fri, 27 Jul 2018 13:24:30 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <83in51ro16.fsf@gnu.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 32278 Cc: 32278@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 (-) On 07/27/2018 12:06 PM, Eli Zaretskii wrote: > Thanks. I just threw away the attempt to be smarter about where the > changes are done, and went back to the original code that announces > changes in the entire region. > > If anyone wants to add smarter code, they should do this on master. Thanks. Can you tell me if the workaround below (calling change functions manually) is correct/safe for emacs versions where this is not fixed? It's a function that non-destructively replaces region contents. (defun my-replace-region (beg end text) "Replace region BEG END with TEXT. As far as possible the replacement is non-destructive." (let ((source (current-buffer))) (with-temp-buffer (insert text) (let ((replacement (current-buffer))) (with-current-buffer source (save-restriction (widen) (narrow-to-region beg end) (let ((inhibit-modification-hooks t)) (run-hook-with-args 'before-change-functions beg end) (replace-buffer-contents replacement) (run-hook-with-args 'after-change-functions beg (+ beg (length text)) (- end beg))))))))) From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 27 08:29:12 2018 Received: (at 32278) by debbugs.gnu.org; 27 Jul 2018 12:29:12 +0000 Received: from localhost ([127.0.0.1]:59688 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fj1rs-00040L-Af for submit@debbugs.gnu.org; Fri, 27 Jul 2018 08:29:12 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42026) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fj1rn-000405-Ce for 32278@debbugs.gnu.org; Fri, 27 Jul 2018 08:29:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fj1rd-0004Dc-Rb for 32278@debbugs.gnu.org; Fri, 27 Jul 2018 08:29:02 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:58391) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fj1rd-0004DY-Na; Fri, 27 Jul 2018 08:28:57 -0400 Received: from [176.228.60.248] (port=2834 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fj1rd-0006qH-2Y; Fri, 27 Jul 2018 08:28:57 -0400 Date: Fri, 27 Jul 2018 15:28:57 +0300 Message-Id: <83fu04svzq.fsf@gnu.org> From: Eli Zaretskii To: =?utf-8?Q?Micha=C5=82?= Kondraciuk In-reply-to: <1ef81ec1-855d-50fe-e96f-4b3059b6dba6@zoho.com> (message from =?utf-8?Q?Micha=C5=82?= Kondraciuk on Fri, 27 Jul 2018 13:24:30 +0200) Subject: Re: bug#32278: 27.0.50; replace-buffer-contents calls change functions with wrong arguments References: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> <83in51ro16.fsf@gnu.org> <1ef81ec1-855d-50fe-e96f-4b3059b6dba6@zoho.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 32278 Cc: 32278@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: -6.0 (------) > Cc: 32278@debbugs.gnu.org > From: Michał Kondraciuk > Date: Fri, 27 Jul 2018 13:24:30 +0200 > > Thanks. Can you tell me if the workaround below (calling change functions manually) is > correct/safe for emacs versions where this is not fixed? It's a function that > non-destructively replaces region contents. It looks so, yes. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 12 09:30:26 2021 Received: (at 32278) by debbugs.gnu.org; 12 Aug 2021 13:30:26 +0000 Received: from localhost ([127.0.0.1]:37808 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEAmv-0003o4-SF for submit@debbugs.gnu.org; Thu, 12 Aug 2021 09:30:26 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEAms-0003e3-O5 for 32278@debbugs.gnu.org; Thu, 12 Aug 2021 09:30:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID :In-Reply-To:Date:References:Subject:Cc:To:From:Sender:Reply-To: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=s6TBWfUG4DSwaxDTAqCpvwKBep8gpM7pthQlDNzpznk=; b=QvPQCq9Tdp4ylif2D5r95S4ZFW GqlnKqGPglJMXgteI3bo9FLCcsFohoueajUEK7jyBihSdj3yn3Z4DPQsatEi3vze6cSoBIMkS6KDq KvAz8YCkSCFrw5v0oUUECHb2oU8gS1fikTrIZr0CBmwysdT/aPEsUfgEBHt9R5z429k4=; Received: from [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 1mEAmi-0006Fk-SU; Thu, 12 Aug 2021 15:30:16 +0200 From: Lars Ingebrigtsen To: =?utf-8?Q?Micha=C5=82?= Kondraciuk Subject: Re: bug#32278: 27.0.50; replace-buffer-contents calls change functions with wrong arguments References: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> Date: Thu, 12 Aug 2021 15:30:12 +0200 In-Reply-To: <96205085-151d-5021-d0bc-44b22df363cf@zoho.com> (=?utf-8?Q?=22Micha=C5=82?= Kondraciuk"'s message of "Wed, 25 Jul 2018 18:17:53 +0200") Message-ID: <87czqilriz.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; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Michał Kondraciuk writes: > Or maybe something like this: > > before (1 4) > after (1 6 3) Looks like Eli fixed this at the time (and then suggested that somebody fix this in a possibly different way), but as far as I can tell, the fix is fine (it works as expected on the current trunk), so [...] 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: 32278 Cc: 32278@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 (---) Micha=C5=82 Kondraciuk writes: > Or maybe something like this: > > before (1 4) > after (1 6 3) Looks like Eli fixed this at the time (and then suggested that somebody fix this in a possibly different way), but as far as I can tell, the fix is fine (it works as expected on the current trunk), so I'm closing this bug report. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 12 09:30:30 2021 Received: (at control) by debbugs.gnu.org; 12 Aug 2021 13:30:30 +0000 Received: from localhost ([127.0.0.1]:37811 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEAn0-0003sg-9D for submit@debbugs.gnu.org; Thu, 12 Aug 2021 09:30:30 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40854) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEAmy-0003lP-PJ for control@debbugs.gnu.org; Thu, 12 Aug 2021 09:30:29 -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=ngRLZ41yAiu9Ku5EA7ejWckfqUtu4QRBtbkD8N0A1+w=; b=YIKaWzOkJ2aPzmsiFlyYIsMTym zBQBCPZY0yrwv7kFtOvAFpI8jhUFoPQFg+5Y9B7fTCW429+tmR2kCEjEyDJz40jtl8CmFSsdwRSGA xoAR1x/zb9m/1nYoDlFeMP2jzXe9L3Hzd1x3XxWKMijcUaKBz0vQebjXtWTIo0Y6l/Cc=; Received: from [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 1mEAmq-0006Fr-Um for control@debbugs.gnu.org; Thu, 12 Aug 2021 15:30:23 +0200 Date: Thu, 12 Aug 2021 15:30:20 +0200 Message-Id: <87bl62lrir.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #32278 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 32278 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 32278 quit From unknown Sun Jun 22 20:57:13 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, 10 Sep 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