From unknown Fri Jun 20 07:23:00 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#18824 <18824@debbugs.gnu.org> To: bug#18824 <18824@debbugs.gnu.org> Subject: Status: split diff-check-labels off diff-no-select Reply-To: bug#18824 <18824@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:23:00 +0000 retitle 18824 split diff-check-labels off diff-no-select=20 reassign 18824 emacs submitter 18824 Ivan Shmakov severity 18824 wishlist tag 18824 fixed patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 25 05:18:03 2014 Received: (at submit) by debbugs.gnu.org; 25 Oct 2014 09:18:03 +0000 Received: from localhost ([127.0.0.1]:34562 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XhxU2-0006nE-Ne for submit@debbugs.gnu.org; Sat, 25 Oct 2014 05:18:03 -0400 Received: from fely.am-1.org ([78.47.74.50]:37397) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XhxU0-0006mn-5I for submit@debbugs.gnu.org; Sat, 25 Oct 2014 05:18:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Type:MIME-Version:Message-ID:Date:Sender:Subject:To:From; bh=ydho5s646twS/jkLVnKoQ8/OqZRa4IrhJOiTI8Pdv/Y=; b=WLc2zwJUndLnOBcqHOEFMil38Mhg2UgKbZtnyiYDcR3pNfYD0qreWjJTcAlS9jPuZ7BFM3IIY148URUsu54DJ8s8+xMjlehX7keHYcWusVCefr63vKpEB2g3nXXku4h0sKv376ngnVWCGxELn8OfN+bP/I0kRDuDFF6rpJ75/H0=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1XhxTy-0007AN-9f for submit@debbugs.gnu.org; Sat, 25 Oct 2014 09:17:58 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1XhxTp-0007Ws-RX for submit@debbugs.gnu.org; Sat, 25 Oct 2014 16:17:49 +0700 From: Ivan Shmakov To: submit@debbugs.gnu.org Subject: split diff-check-labels off diff-no-select Date: Sat, 25 Oct 2014 09:17:49 +0000 Message-ID: <87h9ysecea.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Package: emacs Severity: wishlist Tags: patch Please provide a separate diff-check-labels function to allow for the code calling diff.el facilities to supply its own --label=3D arguments to diff in place of diff.el-generated ones. Possible patch, as well as the example usage, are MIMEd. --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A --=-=-= Content-Type: text/diff Content-Disposition: inline --- a/lisp/vc/diff.el +++ b/lisp/vc/diff.el @@ -121,6 +121,15 @@ Possible values are: nil -- no, it does not check -- try to probe whether it does") +(defun diff-check-labels (&optional force) + (if (not (or force (eq 'check diff-use-labels))) + diff-use-labels + (setq diff-use-labels + (with-temp-buffer + (when (ignore-errors + (call-process diff-command nil t nil "--help")) + (if (search-backward "--label" nil t) t)))))) + (defun diff-no-select (old new &optional switches no-async buf) ;; Noninteractive helper for creating and reverting diff buffers (unless (bufferp new) (setq new (expand-file-name new))) @@ -128,11 +137,7 @@ diff-no-select (old new &optional switches no-async buf) (or switches (setq switches diff-switches)) ; If not specified, use default. (unless (listp switches) (setq switches (list switches))) (or buf (setq buf (get-buffer-create "*Diff*"))) - (when (eq 'check diff-use-labels) - (setq diff-use-labels - (with-temp-buffer - (when (ignore-errors (call-process diff-command nil t nil "--help")) - (if (search-backward "--label" nil t) t))))) + (diff-check-labels) (let* ((old-alt (diff-file-local-copy old)) (new-alt (diff-file-local-copy new)) (command --=-=-= Content-Type: text/emacs-lisp Content-Disposition: inline (let ((old "old") (new "new") (target (get-buffer-create "*My Diff*")) (labels (and (diff-check-labels) (mapcar 'shell-quote-argument (list "--label" "*old revision*" "--label" "*new revision*"))))) (if labels (let ((diff-use-labels nil) (sw (nconc labels (if (listp diff-switches) diff-switches (list diff-switches))))) (diff-no-select old new switches nil target)) (diff-no-select old new nil nil target))) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 25 22:41:25 2014 Received: (at 18824) by debbugs.gnu.org; 26 Oct 2014 02:41:25 +0000 Received: from localhost ([127.0.0.1]:35608 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XiDll-00022F-EJ for submit@debbugs.gnu.org; Sat, 25 Oct 2014 22:41:25 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.181]:16223) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XiDli-000221-QR for 18824@debbugs.gnu.org; Sat, 25 Oct 2014 22:41:23 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArUGAIDvNVNFpY87/2dsb2JhbABZgwaDSsA9gRcXdIIlAQEBAQIBViMFCws0EhQYDSSIBAjSGReOegeEOASpGYFqg0wh X-IPAS-Result: ArUGAIDvNVNFpY87/2dsb2JhbABZgwaDSsA9gRcXdIIlAQEBAQIBViMFCws0EhQYDSSIBAjSGReOegeEOASpGYFqg0wh X-IronPort-AV: E=Sophos;i="4.97,753,1389762000"; d="scan'208";a="95209171" Received: from 69-165-143-59.dsl.teksavvy.com (HELO pastel.home) ([69.165.143.59]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 25 Oct 2014 22:41:17 -0400 Received: by pastel.home (Postfix, from userid 20848) id B59103292; Sat, 25 Oct 2014 22:41:16 -0400 (EDT) From: Stefan Monnier To: Ivan Shmakov Subject: Re: bug#18824: split diff-check-labels off diff-no-select Message-ID: References: <87h9ysecea.fsf@violet.siamics.net> Date: Sat, 25 Oct 2014 22:41:16 -0400 In-Reply-To: <87h9ysecea.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sat, 25 Oct 2014 09:17:49 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 18824 Cc: 18824@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.3 (/) > Please provide a separate diff-check-labels function to allow > for the code calling diff.el facilities to supply its own > --label= arguments to diff in place of diff.el-generated ones. Sounds fine. While you're at it, you might like to use this for smerge-mode (which uses "-L" rather than "--label"). Stefan From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 27 06:33:23 2014 Received: (at control) by debbugs.gnu.org; 27 Oct 2014 10:33:23 +0000 Received: from localhost ([127.0.0.1]:36415 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xihc3-0000ty-81 for submit@debbugs.gnu.org; Mon, 27 Oct 2014 06:33:23 -0400 Received: from fely.am-1.org ([78.47.74.50]:37640) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xihc0-0000tk-FX; Mon, 27 Oct 2014 06:33:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=l2tBG2hJnBKcgDHq2ce9zIm421jHCxCaVdMoZvPoNeU=; b=arbwBHM/RiPnos+rJhp0zPClv/R76I7oQC0IfQZqfmIfyDKfN39/xcG2YoUFN0Yg4IXTyoijSC1MA/KrkdpXZC8llol5QDlT8ZlHEM+8MreM2xYbHuVf9BGyhQx9vBRPvS/OyXMOO+CaJGhZysAezTa82sjRcnazmq/KhLpkM4M=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1Xihbw-0002wU-UH; Mon, 27 Oct 2014 10:33:17 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1Xihbp-0004ZH-Sp; Mon, 27 Oct 2014 17:33:09 +0700 From: Ivan Shmakov To: 18850@debbugs.gnu.org, control@debbugs.gnu.org Subject: Re: bug#18850: smerge-mode: use diff-check-labels References: <87h9ysecea.fsf@violet.siamics.net> <87egttdd37.fsf_-_@violet.siamics.net> Date: Mon, 27 Oct 2014 10:33:09 +0000 In-Reply-To: <87egttdd37.fsf_-_@violet.siamics.net> (Ivan Shmakov's message of "Mon, 27 Oct 2014 10:25:00 +0000") Message-ID: <874mupdcpm.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable block 18850 by 18824 thanks Another try. --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A --=-=-= Content-Type: text/diff Content-Disposition: inline --- a/lisp/vc/smerge-mode.el +++ b/lisp/vc/smerge-mode.el @@ -44,6 +44,7 @@ ;;; Code: (eval-when-compile (require 'cl-lib)) +(require 'diff) ; for diff-check-labels (require 'diff-mode) ;For diff-auto-refine-mode. (require 'newcomment) @@ -1163,9 +1164,12 @@ repeating the command will highlight other two parts." (let ((status (apply 'call-process diff-command nil t nil (append smerge-diff-switches - (list "-L" (concat name1 "/" file) - "-L" (concat name2 "/" file) - file1 file2))))) + (and (diff-check-labels) + (list "--label" + (concat name1 "/" file) + "--label" + (concat name2 "/" file))) + (list file1 file2))))) (if (eq status 0) (insert "No differences found.\n")))) (goto-char (point-min)) (diff-mode) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 21 05:58:09 2014 Received: (at 18824) by debbugs.gnu.org; 21 Nov 2014 10:58:09 +0000 Received: from localhost ([127.0.0.1]:40334 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xrlui-0005G6-Tt for submit@debbugs.gnu.org; Fri, 21 Nov 2014 05:58:09 -0500 Received: from fely.am-1.org ([78.47.74.50]:41706) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xrlug-0005Fn-20; Fri, 21 Nov 2014 05:58:06 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:Date:Sender:Subject:Cc:To:From; bh=04uopeS3Szp2mojjkXXoDzqMD+jh4JSyCWnQuBu4P58=; b=F+MSs29e6EJEicHzxnr2sbxRUmHpy+vdO+sHS6RUZZZA3LFihsf8RAYS12XZ3owDqNzqQmjcZ51aBgy6dANCBgVAx9/Ml3/KASjflg9+jmSApxk6CK3i07JORIlxd+E5lZCXsfvcUnrDecS7MuF11YxuYwzdEG/KpNkp0Ol90Zs=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1Xrlua-0008Jc-P7; Fri, 21 Nov 2014 10:58:01 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1XrluT-0006gH-Km; Fri, 21 Nov 2014 17:57:53 +0700 From: Ivan Shmakov To: Stefan Monnier Subject: (ping) Emacs bugs with patches? Date: Fri, 21 Nov 2014 10:57:53 +0000 Message-ID: <874mtszuq6.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 18824 Cc: 18824@debbugs.gnu.org, 18850@debbugs.gnu.org, 18246@debbugs.gnu.org, 18175@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.7 (/) Stefan, you=E2=80=99ve previously commented on several of the bug reports I=E2=80=99ve suggested patches for. Could you please revisit these patches and either commit or explicitly reject them? (Any suggestion on how, if at all, do I improve them in the latter case will be appreciated.) The bug reports in question are as follows. TIA. http://debbugs.gnu.org/18175 Use (mapc 'switch-to-buffer =E2=80=A6) in files.el (was: mapcar.) http://debbugs.gnu.org/18246 Use inhibit-point-motion-hooks (in addition to inhibit-read-only) in enriched-encode. http://debbugs.gnu.org/18824 New diff-check-labels function (split off diff-no-select) http://debbugs.gnu.org/18850 Use diff-check-labels and the --label option to diff (was: -L =E2=80=93 deprecated) in smerge-mode.el --=20 FSF associate member #7257 np. =D0=9F=D0=BE =D0=BF=D0=BE=D0=BB=D1=8F=D0=BC= , =D0=B7=D0=B0 =D1=80=D0=B5=D0=BA=D0=BE=D0=B9 =E2=80=94 =D0=98=D0=BB=D0=BB= =D0=B5=D1=82 =E2=80=A6 B6A0 230E 334A From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 23 07:05:39 2016 Received: (at 18824) by debbugs.gnu.org; 23 Feb 2016 12:05:39 +0000 Received: from localhost ([127.0.0.1]:39393 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYBil-0007nn-0u for submit@debbugs.gnu.org; Tue, 23 Feb 2016 07:05:39 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:55729) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYBij-0007nf-3Q for 18824@debbugs.gnu.org; Tue, 23 Feb 2016 07:05:37 -0500 Received: from cpe-60-225-211-161.nsw.bigpond.net.au ([60.225.211.161] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aYBiH-00065V-TI; Tue, 23 Feb 2016 13:05:10 +0100 From: Lars Ingebrigtsen To: Ivan Shmakov Subject: Re: bug#18824: split diff-check-labels off diff-no-select References: <87h9ysecea.fsf@violet.siamics.net> Date: Tue, 23 Feb 2016 23:05:03 +1100 In-Reply-To: <87h9ysecea.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sat, 25 Oct 2014 09:17:49 +0000") Message-ID: <877fhvpr80.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1aYBiH-00065V-TI X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1456833911.16367@Qw9DCNKHbX/FQrdfgt4Raw X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 18824 Cc: 18824@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: 0.0 (/) Ivan Shmakov writes: > Package: emacs > Severity: wishlist > Tags: patch > > Please provide a separate diff-check-labels function to allow > for the code calling diff.el facilities to supply its own > --label= arguments to diff in place of diff.el-generated ones. > > Possible patch, as well as the example usage, are MIMEd. I think this patch looks fine. Could you also provide a NEWS entry? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 25 17:19:15 2019 Received: (at 18824) by debbugs.gnu.org; 25 Jun 2019 21:19:15 +0000 Received: from localhost ([127.0.0.1]:33690 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hfsqL-0007o5-E0 for submit@debbugs.gnu.org; Tue, 25 Jun 2019 17:19:15 -0400 Received: from quimby.gnus.org ([80.91.231.51]:56878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hfsqF-0007nu-Su for 18824@debbugs.gnu.org; Tue, 25 Jun 2019 17:19:08 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hfsq1-0004VN-Jf; Tue, 25 Jun 2019 23:18:51 +0200 From: Lars Ingebrigtsen To: Ivan Shmakov Subject: Re: bug#18824: split diff-check-labels off diff-no-select References: <87h9ysecea.fsf@violet.siamics.net> Date: Tue, 25 Jun 2019 23:18:49 +0200 In-Reply-To: <87h9ysecea.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sat, 25 Oct 2014 09:17:49 +0000") Message-ID: 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: Ivan Shmakov writes: > Please provide a separate diff-check-labels function to allow > for the code calling diff.el facilities to supply its own > --label= arguments to diff in place of diff.el-generated ones. > > Possibl [...] 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: 18824 Cc: 18824@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 (-) Ivan Shmakov writes: > Please provide a separate diff-check-labels function to allow > for the code calling diff.el facilities to supply its own > --label= arguments to diff in place of diff.el-generated ones. > > Possible patch, as well as the example usage, are MIMEd. I've now applied the patch along with the smerge one. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 25 17:19:02 2019 Received: (at control) by debbugs.gnu.org; 25 Jun 2019 21:19:02 +0000 Received: from localhost ([127.0.0.1]:33687 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hfsqE-0007nh-56 for submit@debbugs.gnu.org; Tue, 25 Jun 2019 17:19:02 -0400 Received: from quimby.gnus.org ([80.91.231.51]:56872) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hfsqC-0007nK-A7 for control@debbugs.gnu.org; Tue, 25 Jun 2019 17:19:00 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hfsq8-0004VS-T1 for control@debbugs.gnu.org; Tue, 25 Jun 2019 23:18:58 +0200 Date: Tue, 25 Jun 2019 23:18:56 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #18824 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 18824 fixed close 18824 27.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: 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 18824 fixed close 18824 27.1 quit From unknown Fri Jun 20 07:23:00 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, 24 Jul 2019 11:24:06 +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