From unknown Tue Jun 24 15:42:53 2025 X-Loop: help-debbugs@gnu.org Subject: bug#17954: 24.4.50; [patch] `menu-bar-make-toggle' should allow for keywords Resent-From: Drew Adams Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 06 Jul 2014 05:30:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 17954 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 17954@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.140462456423421 (code B ref -1); Sun, 06 Jul 2014 05:30:03 +0000 Received: (at submit) by debbugs.gnu.org; 6 Jul 2014 05:29:24 +0000 Received: from localhost ([127.0.0.1]:44484 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3f0t-00065g-Vw for submit@debbugs.gnu.org; Sun, 06 Jul 2014 01:29:24 -0400 Received: from eggs.gnu.org ([208.118.235.92]:46975) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3f0r-00065R-Cx for submit@debbugs.gnu.org; Sun, 06 Jul 2014 01:29:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X3f0b-00027X-Nf for submit@debbugs.gnu.org; Sun, 06 Jul 2014 01:29:15 -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.0 required=5.0 tests=BAYES_20 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50553) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X3f0b-00027T-L1 for submit@debbugs.gnu.org; Sun, 06 Jul 2014 01:29:05 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X3f0S-0003RW-SL for bug-gnu-emacs@gnu.org; Sun, 06 Jul 2014 01:29:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X3f0K-00024A-4m for bug-gnu-emacs@gnu.org; Sun, 06 Jul 2014 01:28:56 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:25232) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X3f0J-00023y-UN for bug-gnu-emacs@gnu.org; Sun, 06 Jul 2014 01:28:48 -0400 Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id s665Skg9019897 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 6 Jul 2014 05:28:47 GMT Received: from aserz7021.oracle.com (aserz7021.oracle.com [141.146.126.230]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s665Sj6g006742 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 6 Jul 2014 05:28:45 GMT Received: from abhmp0018.oracle.com (abhmp0018.oracle.com [141.146.116.24]) by aserz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s665SjbG006734 for ; Sun, 6 Jul 2014 05:28:45 GMT MIME-Version: 1.0 Message-ID: <9e5b6c5f-0dd9-44ef-b997-3cc032e7a107@default> Date: Sat, 5 Jul 2014 22:28:37 -0700 (PDT) From: Drew Adams X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8 (707110) [OL 12.0.6691.5000 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Source-IP: acsinet21.oracle.com [141.146.126.237] 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: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) 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: -4.0 (----) `menu-bar-make-toggle' handles no keywords. It takes the value of :help as an explicit argument (without keyword), but it does not pass along :keys, :active, :enable, etc. to `menu-item'. It should. It cannot accept keywords in the normal way because it defines BODY as an &rest parameter. This mistake should be corrected, making for an incompatible change unfortunately, in order to allow a KEYWORDS &rest parameter. BODY is seldom used. In the Emacs Lisp sources, there are only these two occurrences of `menu-bar-make-toggle' that use BODY: `toggle-save-place-globally' and `toggle-uniquify-buffer-names'. They would just need to wrap the current BODY code in an explicit `progn'. Of course, there may be 3rd-party code that uses parameter BODY. The only way I can think of to be sensitive to that breakage is to use a new macro name and code, and deprecate the old name `menu-bar-make-toggle'. Perhaps this incompatible change could be tolerated, since BODY is rare and the adaptation for any existing code is trivial (wrap with `progn'). Here is one possible definition (with a doc string and better parameter names): (defmacro bmkp-menu-bar-make-toggle (command variable item-name message hel= p &optional setting-sexp &rest keywords) "Define a menu-bar toggle command. COMMAND (a symbol) is the toggle command to define. VARIABLE (a symbol) is the variable to set. ITEM-NAME (a string) is the menu-item name. MESSAGE is a format string for the toggle message, with %s for the new status. HELP (a string) is the `:help' tooltip text and the doc string first line (minus final period) for the command. SETTING-SEXP is a Lisp sexp that sets VARIABLE, or it is nil meaning set it according to its `defcustom' or using `set-default'. KEYWORDS is a plist for `menu-item' for keywords other than `:help'." `(progn (defun ,command (&optional interactively) ,(concat "Toggle whether to " (downcase (substring help 0 1)) (substring help 1) ". In an interactive call, record this option as a candidate for saving by \"Save Options\" in Custom buffers.") (interactive "p") (if ,(if setting-sexp `,setting-sexp `(progn =09=09 (custom-load-symbol ',variable) =09=09 (let ((set (or (get ',variable 'custom-set) 'set-default)) =09=09 (get (or (get ',variable 'custom-get) 'default-value))) =09=09 (funcall set ',variable (not (funcall get ',variable)))))) (message ,message "enabled globally") (message ,message "disabled globally")) ;; `customize-mark-as-set' must only be called when a variable is set ;; interactively, because the purpose is to mark the variable as a ;; candidate for `Save Options', and we do not want to save options t= hat ;; the user has already set explicitly in the init file. (when interactively (customize-mark-as-set ',variable))) '(menu-item ,item-name ,command :help ,help :button (:toggle . (and (default-boundp ',variable) (default-value ',variable))) ,@keywords))) In GNU Emacs 24.4.50.1 (i686-pc-mingw32) of 2014-06-28 on ODIEONE Bzr revision: 117431 rgm@gnu.org-20140628015517-eku6hj8mpgcvfnso Windowing system distributor `Microsoft Corp.', version 6.1.7601 Configured using: `configure --prefix=3D/c/Devel/emacs/snapshot/trunk --enable-checking=3Dyes,glyphs 'CFLAGS=3D-O0 -g3' LDFLAGS=3D-Lc:/Devel/emacs/lib 'CPPFLAGS=3D-DGC_MCHECK=3D1 -Ic:/Devel/emacs/include'' From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 06 14:13:31 2014 Received: (at control) by debbugs.gnu.org; 6 Jul 2014 18:13:31 +0000 Received: from localhost ([127.0.0.1]:45132 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3qwN-00057Z-5L for submit@debbugs.gnu.org; Sun, 06 Jul 2014 14:13:31 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:34244 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3qwK-00057M-4P for control@debbugs.gnu.org; Sun, 06 Jul 2014 14:13:29 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1X3qwJ-0007Fs-Gc for control@debbugs.gnu.org; Sun, 06 Jul 2014 14:13:27 -0400 Date: Sun, 06 Jul 2014 14:13:27 -0400 Message-Id: Subject: control message for bug 17954 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -5.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: -5.7 (-----) forcemerge 17193 17954 From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 06 14:14:08 2014 Received: (at control) by debbugs.gnu.org; 6 Jul 2014 18:14:08 +0000 Received: from localhost ([127.0.0.1]:45136 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3qwx-00059L-TT for submit@debbugs.gnu.org; Sun, 06 Jul 2014 14:14:08 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:34246 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3qww-00059C-2R for control@debbugs.gnu.org; Sun, 06 Jul 2014 14:14:07 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1X3qwv-0007IX-SB for control@debbugs.gnu.org; Sun, 06 Jul 2014 14:14:05 -0400 Date: Sun, 06 Jul 2014 14:14:05 -0400 Message-Id: Subject: control message for bug 6542 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -5.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: -5.7 (-----) merge 17193 6542 From unknown Tue Jun 24 15:42:53 2025 X-Loop: help-debbugs@gnu.org Subject: bug#17954: 24.4.50; [patch] `menu-bar-make-toggle' should allow for keywords Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 27 Apr 2016 22:06:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 17954 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Drew Adams Cc: 17954@debbugs.gnu.org, 6542@debbugs.gnu.org Received: via spool by 17954-submit@debbugs.gnu.org id=B17954.146179474029900 (code B ref 17954); Wed, 27 Apr 2016 22:06:01 +0000 Received: (at 17954) by debbugs.gnu.org; 27 Apr 2016 22:05:40 +0000 Received: from localhost ([127.0.0.1]:50884 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1avXaW-0007m7-HY for submit@debbugs.gnu.org; Wed, 27 Apr 2016 18:05:40 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:51276) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1avXaU-0007lt-Cf; Wed, 27 Apr 2016 18:05:38 -0400 Received: from cm-84.215.1.64.getinternet.no ([84.215.1.64] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1avXaR-0004Oo-9S; Thu, 28 Apr 2016 00:05:37 +0200 From: Lars Ingebrigtsen References: <9e5b6c5f-0dd9-44ef-b997-3cc032e7a107@default> Date: Thu, 28 Apr 2016 00:05:35 +0200 In-Reply-To: <9e5b6c5f-0dd9-44ef-b997-3cc032e7a107@default> (Drew Adams's message of "Sat, 5 Jul 2014 22:28:37 -0700 (PDT)") Message-ID: <8760v2so5s.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-Spam-Score: 0.0 (/) 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 (/) Drew Adams writes: > It cannot accept keywords in the normal way because it defines BODY as > an &rest parameter. This mistake should be corrected, making for an > incompatible change unfortunately, in order to allow a KEYWORDS &rest > parameter. > > BODY is seldom used. In the Emacs Lisp sources, there are only these > two occurrences of `menu-bar-make-toggle' that use BODY: > `toggle-save-place-globally' and `toggle-uniquify-buffer-names'. They > would just need to wrap the current BODY code in an explicit `progn'. I don't think such an incompatible change would be appropriate. > Of course, there may be 3rd-party code that uses parameter BODY. The > only way I can think of to be sensitive to that breakage is to use a new > macro name and code, and deprecate the old name `menu-bar-make-toggle'. > Perhaps this incompatible change could be tolerated, since BODY is rare > and the adaptation for any existing code is trivial (wrap with `progn'). And having two macros that do the same wouldn't be very appropriate, either... I think it would make more sense to extend the HELP parameter to be a list, and then it could be the keyword list. Your code as a patch included below. diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index cc7233e..ca40e94 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -629,31 +629,44 @@ menu-bar-make-mm-toggle :button (:toggle . (and (default-boundp ',fname) (default-value ',fname))))) -(defmacro menu-bar-make-toggle (name variable doc message help &rest body) +(defmacro menu-bar-make-toggle (command variable item-name message help + &optional setting-sexp &rest keywords) + "Define a menu-bar toggle command. +COMMAND (a symbol) is the toggle command to define. +VARIABLE (a symbol) is the variable to set. +ITEM-NAME (a string) is the menu-item name. +MESSAGE is a format string for the toggle message, with %s for the new + status. +HELP (a string) is the `:help' tooltip text and the doc string first + line (minus final period) for the command. +SETTING-SEXP is a Lisp sexp that sets VARIABLE, or it is nil meaning + set it according to its `defcustom' or using `set-default'. +KEYWORDS is a plist for `menu-item' for keywords other than `:help'." `(progn - (defun ,name (&optional interactively) + (defun ,command (&optional interactively) ,(concat "Toggle whether to " (downcase (substring help 0 1)) - (substring help 1) ". + (substring help 1) ". In an interactive call, record this option as a candidate for saving by \"Save Options\" in Custom buffers.") (interactive "p") - (if ,(if body `(progn . ,body) - `(progn + (if ,(if setting-sexp + `,setting-sexp + `(progn (custom-load-symbol ',variable) (let ((set (or (get ',variable 'custom-set) 'set-default)) (get (or (get ',variable 'custom-get) 'default-value))) (funcall set ',variable (not (funcall get ',variable)))))) - (message ,message "enabled globally") - (message ,message "disabled globally")) - ;; The function `customize-mark-as-set' must only be called when - ;; a variable is set interactively, as the purpose is to mark it as - ;; a candidate for "Save Options", and we do not want to save options - ;; the user have already set explicitly in his init file. - (if interactively (customize-mark-as-set ',variable))) - '(menu-item ,doc ,name - :help ,help - :button (:toggle . (and (default-boundp ',variable) - (default-value ',variable)))))) + (message ,message "enabled globally") + (message ,message "disabled globally")) + ;; `customize-mark-as-set' must only be called when a variable is set + ;; interactively, because the purpose is to mark the variable as a + ;; candidate for `Save Options', and we do not want to save options that + ;; the user has already set explicitly in the init file. + (when interactively (customize-mark-as-set ',variable))) + '(menu-item ,item-name ,command :help ,help + :button (:toggle . (and (default-boundp ',variable) + (default-value ',variable))) + ,@keywords))) ;; Function for setting/saving default font. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Jun 24 15:42:53 2025 X-Loop: help-debbugs@gnu.org Subject: bug#17954: 24.4.50; [patch] `menu-bar-make-toggle' should allow for keywords Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 19 Sep 2020 16:25:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 17954 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Drew Adams Cc: 17954@debbugs.gnu.org, 6542@debbugs.gnu.org Received: via spool by 17954-submit@debbugs.gnu.org id=B17954.160053269024644 (code B ref 17954); Sat, 19 Sep 2020 16:25:02 +0000 Received: (at 17954) by debbugs.gnu.org; 19 Sep 2020 16:24:50 +0000 Received: from localhost ([127.0.0.1]:47894 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJffO-0006PL-Fl for submit@debbugs.gnu.org; Sat, 19 Sep 2020 12:24:50 -0400 Received: from quimby.gnus.org ([95.216.78.240]:45638) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJffL-0006Ox-Rl; Sat, 19 Sep 2020 12:24: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=DUNA5xdT2owhjmCW4btT8Mg+bODK/UxkLp1dvvtLVP4=; b=bbtwZzgd6rfSRPkVl0dwV6VjS8 5UA05VN9yatSGsJJ43n6Z9YD+9V4LBIxlX6xoEvf7i7i2fK6EjmKtDaLTcavvQe+756iRnEJLGu7A AfzkP1/orrAJjhQ3IwGh3nxE6Td5ifyXFQvBGAwL+cI9i7mz6djlR6qFoejIhQNB4lTI=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kJffC-0000It-ME; Sat, 19 Sep 2020 18:24:41 +0200 From: Lars Ingebrigtsen References: <9e5b6c5f-0dd9-44ef-b997-3cc032e7a107@default> X-Now-Playing: Frankie Goes To Hollywood's _Welcome To The Pleasuredome_: "War" Date: Sat, 19 Sep 2020 18:24:37 +0200 In-Reply-To: <9e5b6c5f-0dd9-44ef-b997-3cc032e7a107@default> (Drew Adams's message of "Sat, 5 Jul 2014 22:28:37 -0700 (PDT)") Message-ID: <87d02hohtm.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: Drew Adams writes: > `menu-bar-make-toggle' handles no keywords. It takes the value of > :help as an explicit argument (without keyword), but it does not pass > along :keys, :active, :enable, etc. to `menu-item'. It sho [...] 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-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: > `menu-bar-make-toggle' handles no keywords. It takes the value of > :help as an explicit argument (without keyword), but it does not pass > along :keys, :active, :enable, etc. to `menu-item'. It should. > > It cannot accept keywords in the normal way because it defines BODY as > an &rest parameter. This mistake should be corrected, making for an > incompatible change unfortunately, in order to allow a KEYWORDS &rest > parameter. > > BODY is seldom used. In the Emacs Lisp sources, there are only these > two occurrences of `menu-bar-make-toggle' that use BODY: > `toggle-save-place-globally' and `toggle-uniquify-buffer-names'. They > would just need to wrap the current BODY code in an explicit `progn'. I've now applied your patch, but renamed the resulting macro to menu-bar-make-toggle-command, while the former name is now an obsolete wrapper macro. I've also adjusted all in-tree callers. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sat Sep 19 12:24:56 2020 Received: (at control) by debbugs.gnu.org; 19 Sep 2020 16:24:56 +0000 Received: from localhost ([127.0.0.1]:47897 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJffT-0006Ph-Ow for submit@debbugs.gnu.org; Sat, 19 Sep 2020 12:24:56 -0400 Received: from quimby.gnus.org ([95.216.78.240]:45656) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJffR-0006P7-Ai for control@debbugs.gnu.org; Sat, 19 Sep 2020 12:24: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=d5blUCbl9A8GbrZxBYOOyng96/5P3mREr0fkOImgC6c=; b=idl6gGcOhnW8ofNIOHEaaFk2Wf lEIidacpK8hmsW2SKFklh38AmFzG+fNW22ZsKUmm8WIazbw629b7yjYbKCze7FaLnmP16AT53hAx/ H/C47A56uz6r8eS4Dz1KhXvx+fEcpmyc3+DTTbo4gwNJAmgTuEVuHK1eEeV0ljYS+H5I=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kJffJ-0000JC-Li for control@debbugs.gnu.org; Sat, 19 Sep 2020 18:24:47 +0200 Date: Sat, 19 Sep 2020 18:24:44 +0200 Message-Id: <87bli1ohtf.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #6542 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 6542 fixed close 6542 28.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 6542 fixed close 6542 28.1 quit