From unknown Wed Jun 18 23:18:11 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#21185 <21185@debbugs.gnu.org> To: bug#21185 <21185@debbugs.gnu.org> Subject: Status: 25.0.50; byte-compiler warn on quote lexical var Reply-To: bug#21185 <21185@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:18:11 +0000 retitle 21185 25.0.50; byte-compiler warn on quote lexical var reassign 21185 emacs submitter 21185 stephen_leake@stephe-leake.org severity 21185 minor tag 21185 wontfix thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 04 05:17:51 2015 Received: (at submit) by debbugs.gnu.org; 4 Aug 2015 09:17:51 +0000 Received: from localhost ([127.0.0.1]:39076 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZMYM2-0006YS-Dd for submit@debbugs.gnu.org; Tue, 04 Aug 2015 05:17:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45378) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZMYLz-0006YJ-Ge for submit@debbugs.gnu.org; Tue, 04 Aug 2015 05:17:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZMYLx-0002Xu-Ij for submit@debbugs.gnu.org; Tue, 04 Aug 2015 05:17:47 -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 lists.gnu.org ([2001:4830:134:3::11]:52436) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMYLx-0002Wp-FN for submit@debbugs.gnu.org; Tue, 04 Aug 2015 05:17:45 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58830) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMYLv-0003jS-8Y for bug-gnu-emacs@gnu.org; Tue, 04 Aug 2015 05:17:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZMYLp-0001Zk-Uk for bug-gnu-emacs@gnu.org; Tue, 04 Aug 2015 05:17:43 -0400 Received: from gproxy1-pub.mail.unifiedlayer.com ([69.89.25.95]:50876) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1ZMYLp-00018O-LC for bug-gnu-emacs@gnu.org; Tue, 04 Aug 2015 05:17:37 -0400 Received: (qmail 20028 invoked by uid 0); 4 Aug 2015 09:17:33 -0000 Received: from unknown (HELO cmgw3) (10.0.90.84) by gproxy1.mail.unifiedlayer.com with SMTP; 4 Aug 2015 09:17:33 -0000 Received: from host114.hostmonster.com ([74.220.207.114]) by cmgw3 with id 0fHS1r00E2UdiVW01fHVyY; Tue, 04 Aug 2015 09:17:32 -0600 X-Authority-Analysis: v=2.1 cv=Qc314Krv c=1 sm=1 tr=0 a=CQdxDb2CKd3SRg4I0/XZPQ==:117 a=CQdxDb2CKd3SRg4I0/XZPQ==:17 a=DsvgjBjRAAAA:8 a=f5113yIGAAAA:8 a=9i_RQKNPAAAA:8 a=hEr_IkYJT6EA:10 a=x_XPkuGwIRMA:10 a=uRRa74qj2VoA:10 a=g2Jlpuu6fPErGmUW05cA:9 a=5ta8IXYzoi8q4o9Q:21 a=iC2h1ylat4ljbyl4:21 Received: from [76.218.37.33] (port=62644 helo=TAKVER2) by host114.hostmonster.com with esmtpa (Exim 4.84) (envelope-from ) id 1ZMYLe-00072k-SG for bug-gnu-emacs@gnu.org; Tue, 04 Aug 2015 03:17:27 -0600 Date: Tue, 04 Aug 2015 04:17:21 -0500 Message-Id: <86y4hre7ku.fsf@stephe-leake.org> From: stephen_leake@stephe-leake.org To: bug-gnu-emacs@gnu.org Subject: 25.0.50; byte-compiler warn on quote lexical var X-Identified-User: {2442:host114.hostmonster.com:stephele:stephe-leake.org} {sentby:smtp auth 76.218.37.33 authed with stephen_leake@stephe-leake.org} X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x 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.3 (----) 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: -4.3 (----) This file gives an example where a new byte-compiler warning would be useful: ;; quote-lexical-var.el -*- lexical-binding: t -*- (defun display-var (var) "Display variable value of VAR (a symbol), if any." (cond ((boundp var) (message "%s: %s" (symbol-name var) (symbol-value var))) (t (message "%s not bound" (symbol-name var))))) (defun quote-lexical-var () (let ((my-var "foo")) (message "non-quoted my-var: %s" my-var) (display-var 'my-var))) (provide 'quote-lexical-var) ;; end of file To see the problem, execute (in emacs master, -Q): (add-to-list 'load-path "/home/stephe/Elisp_Work/") ;; path containing above file (byte-compile-file "/home/stephe/Elisp_Work/quote-lexical-var.el") (require 'quote-lexical-var) (display-var 'default-directory) This gives "default-directory: /home/stephe" as expected. (quote-lexical-var) This gives: non-quoted my-var: foo my-var: not bound Quoting lexical variables does not work; there is no symbol available at run-time. I've been bitten by this problem when converting code to use lexical binding; it would be helpful if the byte-compiler warned about it. In GNU Emacs 25.0.50.4 (x86_64-w64-mingw32) of 2015-08-02 on TAKVER2 Repository revision: d2c4309d46529bac656f332677d2c5e199577845 Windowing system distributor `Microsoft Corp.', version 6.3.9600 Configured using: `configure --prefix=/mingw64 PKG_CONFIG_PATH=/mingw64/lib/pkgconfig:/mingw64/share/pkgconfig' Configured features: XPM JPEG TIFF GIF PNG RSVG SOUND NOTIFY ACL GNUTLS LIBXML2 ZLIB TOOLKIT_SCROLL_BARS Important settings: value of $LANG: en_US.UTF-8 locale-coding-system: cp1252 Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message dired format-spec rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util help-fns help-mode easymenu cl-loaddefs pcase cl-lib mail-prsvr mail-utils time-date mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel dos-w32 ls-lisp disp-table w32-win w32-vars term/common-win tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cl-generic cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese charscript case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote w32notify w32 multi-tty make-network-process emacs) Memory information: ((conses 16 82209 4908) (symbols 56 18803 0) (miscs 48 36 106) (strings 32 14166 4682) (string-bytes 1 381142) (vectors 16 10489) (vector-slots 8 395072 6302) (floats 8 121 16) (intervals 56 221 2) (buffers 976 11)) From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 05 23:28:56 2015 Received: (at 21185) by debbugs.gnu.org; 6 Aug 2015 03:28:56 +0000 Received: from localhost ([127.0.0.1]:40653 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZNBrU-0006YF-1t for submit@debbugs.gnu.org; Wed, 05 Aug 2015 23:28:56 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.181]:35294) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZNBrR-0006Y3-E5 for 21185@debbugs.gnu.org; Wed, 05 Aug 2015 23:28:54 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0AzEwA731xV//gFNJ1cgxCEAoVVuzcJhH6CSQQEAgKBPDkUAQEBAQEBAYEKQQWDXQEBAwFWIwULCzQSFBgNiFsIzyMBAQEBBgIBH4s6hQUHFoQXBbUEI4QUIoJ4AQEB X-IPAS-Result: A0AzEwA731xV//gFNJ1cgxCEAoVVuzcJhH6CSQQEAgKBPDkUAQEBAQEBAYEKQQWDXQEBAwFWIwULCzQSFBgNiFsIzyMBAQEBBgIBH4s6hQUHFoQXBbUEI4QUIoJ4AQEB X-IronPort-AV: E=Sophos;i="5.13,465,1427774400"; d="scan'208";a="158898319" Received: from 157-52-5-248.cpe.teksavvy.com (HELO pastel.home) ([157.52.5.248]) by ironport2-out.teksavvy.com with ESMTP; 05 Aug 2015 23:28:52 -0400 Received: by pastel.home (Postfix, from userid 20848) id 7CFD05FB58; Wed, 5 Aug 2015 23:28:52 -0400 (EDT) From: Stefan Monnier To: stephen_leake@stephe-leake.org Subject: Re: bug#21185: 25.0.50; byte-compiler warn on quote lexical var Message-ID: References: <86y4hre7ku.fsf@stephe-leake.org> Date: Wed, 05 Aug 2015 23:28:52 -0400 In-Reply-To: <86y4hre7ku.fsf@stephe-leake.org> (stephen leake's message of "Tue, 04 Aug 2015 04:17:21 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 21185 Cc: 21185@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 (/) > I've been bitten by this problem when converting code to use lexical > binding; it would be helpful if the byte-compiler warned about it. Agreed, but I haven't figured out how to make this work. There are two problems: 1- detect not just things like =AB 'var =BB but also things like =AB '(var1 var2 var3) =BB since such occur in a few places as well. 2- don't swamp the user with false positives. Problem 2 is by far the biggest. It's very common to have a local variable `face' and at the same time to use the symbol `face' (quoted), for example. I do have such a warning in my local hacks (it outputs a warning for any ' where is a locally bound lexical variable) and find it unbearable, even though I'm usually considered to tolerate warnings much better than most. Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 06 03:16:06 2015 Received: (at 21185) by debbugs.gnu.org; 6 Aug 2015 07:16:06 +0000 Received: from localhost ([127.0.0.1]:40768 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZNFPK-00055D-92 for submit@debbugs.gnu.org; Thu, 06 Aug 2015 03:16:06 -0400 Received: from gproxy10-pub.mail.unifiedlayer.com ([69.89.20.226]:37658) by debbugs.gnu.org with smtp (Exim 4.80) (envelope-from ) id 1ZNFPG-00054y-TS for 21185@debbugs.gnu.org; Thu, 06 Aug 2015 03:16:04 -0400 Received: (qmail 3963 invoked by uid 0); 6 Aug 2015 07:16:00 -0000 Received: from unknown (HELO cmgw2) (10.0.90.83) by gproxy10.mail.unifiedlayer.com with SMTP; 6 Aug 2015 07:16:00 -0000 Received: from host114.hostmonster.com ([74.220.207.114]) by cmgw2 with id 1KFs1r0082UdiVW01KFvi1; Thu, 06 Aug 2015 01:15:58 -0600 X-Authority-Analysis: v=2.1 cv=O9qq4nNW c=1 sm=1 tr=0 a=CQdxDb2CKd3SRg4I0/XZPQ==:117 a=CQdxDb2CKd3SRg4I0/XZPQ==:17 a=DsvgjBjRAAAA:8 a=f5113yIGAAAA:8 a=9i_RQKNPAAAA:8 a=y7kgw_RnJtkA:10 a=IkcTkHD0fZMA:10 a=hEr_IkYJT6EA:10 a=x_XPkuGwIRMA:10 a=uRRa74qj2VoA:10 a=4f21q7dj7GXvHtTunykA:9 a=QEXdDO2ut3YA:10 Received: from [76.218.37.33] (port=49814 helo=TAKVER2) by host114.hostmonster.com with esmtpa (Exim 4.84) (envelope-from ) id 1ZNFP8-0007yp-2Z; Thu, 06 Aug 2015 01:15:54 -0600 From: Stephen Leake To: Stefan Monnier Subject: Re: bug#21185: 25.0.50; byte-compiler warn on quote lexical var References: <86y4hre7ku.fsf@stephe-leake.org> Date: Thu, 06 Aug 2015 02:15:42 -0500 In-Reply-To: (Stefan Monnier's message of "Wed, 05 Aug 2015 23:28:52 -0400") Message-ID: <86si7wc2g1.fsf@stephe-leake.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (windows-nt) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Identified-User: {2442:host114.hostmonster.com:stephele:stephe-leake.org} {sentby:smtp auth 76.218.37.33 authed with stephen_leake@stephe-leake.org} X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 21185 Cc: 21185@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.0 (/) Stefan Monnier writes: >> I've been bitten by this problem when converting code to use lexical >> binding; it would be helpful if the byte-compiler warned about it. > > Agreed, but I haven't figured out how to make this work. > There are two problems: > 1- detect not just things like =C2=AB 'var =C2=BB but also things like = =C2=AB '(var1 > var2 var3) =C2=BB since such occur in a few places as well. > 2- don't swamp the user with false positives. > > Problem 2 is by far the biggest. It's very common to have a local > variable `face' and at the same time to use the symbol `face' (quoted), > for example. > > I do have such a warning in my local hacks (it outputs a warning for any > ' where is a locally bound lexical variable) and find it > unbearable, even though I'm usually considered to tolerate warnings much > better than most. Ok. Can you post your local hack? That would at least be useful during a transition to lexical-binding: t; after that, testing should suffice. --=20 -- Stephe From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 08 10:13:17 2021 Received: (at 21185) by debbugs.gnu.org; 8 Jul 2021 14:13:17 +0000 Received: from localhost ([127.0.0.1]:57110 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1Um9-0000YI-K9 for submit@debbugs.gnu.org; Thu, 08 Jul 2021 10:13:17 -0400 Received: from quimby.gnus.org ([95.216.78.240]:35534) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1Um6-0000Xo-Rx for 21185@debbugs.gnu.org; Thu, 08 Jul 2021 10:13:11 -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=gjLixkyGK6aiipkj04UISkCzOYR/xIFpovelut5saoc=; b=CjurrfRShujWvn01l1540f2WB6 V9U4BfpY/9AZVpNMvfXjZiU7e/VNljqeTzbOFc7RfR4zSfy8AphqIVQDCboGToZKL9rzKKT/zOsAV nQ1PtQ/Ju+z4Sq+uT4lauo1vRIflFOX1+FeQngyiU8Q+yfYfIYkRd6YCz9QqWR66GJjU=; 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 1m1Ulj-0003Td-Pq; Thu, 08 Jul 2021 16:12:53 +0200 From: Lars Ingebrigtsen To: Stefan Monnier Subject: Re: bug#21185: 25.0.50; byte-compiler warn on quote lexical var References: <86y4hre7ku.fsf@stephe-leake.org> X-Now-Playing: Yorkston, Thorne, Khan's _Navarasa: Nine Emotions_: "Waliyan Da Raja" Date: Thu, 08 Jul 2021 16:12:47 +0200 In-Reply-To: (Stefan Monnier's message of "Wed, 05 Aug 2015 23:28:52 -0400") Message-ID: <878s2gsxls.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: Stefan Monnier writes: >> I've been bitten by this problem when converting code to use lexical >> binding; it would be helpful if the byte-compiler warned about it. > > Agreed, but I haven't figured out how to make this wor [...] 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: 21185 Cc: stephen_leake@stephe-leake.org, 21185@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 (---) Stefan Monnier writes: >> I've been bitten by this problem when converting code to use lexical >> binding; it would be helpful if the byte-compiler warned about it. > > Agreed, but I haven't figured out how to make this work. > There are two problems: > 1- detect not just things like =C2=AB 'var =C2=BB but also things like = =C2=AB '(var1 > var2 var3) =C2=BB since such occur in a few places as well. > 2- don't swamp the user with false positives. > > Problem 2 is by far the biggest. It's very common to have a local > variable `face' and at the same time to use the symbol `face' (quoted), > for example. So the suggestion is to have code like (let ((foo "bar")) (when (zot 'foo) ...)) give a warning (in lexical code)? That does sound useful, especially if the `zot' here is `bound-and-true-p', which somebody was using in a different bug report the other week. But I think that Stefan is totally correct in 2) -- there will be so many false positives that it won't be useful. 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 Jul 08 10:13:11 2021 Received: (at control) by debbugs.gnu.org; 8 Jul 2021 14:13:11 +0000 Received: from localhost ([127.0.0.1]:57108 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1Um7-0000Y8-Eh for submit@debbugs.gnu.org; Thu, 08 Jul 2021 10:13:11 -0400 Received: from quimby.gnus.org ([95.216.78.240]:35532) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1Um4-0000Xl-SX for control@debbugs.gnu.org; Thu, 08 Jul 2021 10:13:09 -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=9ZjyaWNhqloU1Y6jmciZEa7wPkWu6BRKchQkvN+Hq9Y=; b=SshCPuArODcSiPkhkWb165tNLZ NL6Oke7md4m/nExfOI6rmJ4QJhOnrmqXkH+uj6UsRnqnKtI8ffhQztgI6jpkWOON8gw60m52zB048 nZuAzJpdSi9QhqePvwMdF/0ce4Y1xF5Uyy16p/Kh/xlXYDHAgd7L+PCAkRj066IsoZ84=; 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 1m1Ult-0003Ti-2p for control@debbugs.gnu.org; Thu, 08 Jul 2021 16:13:03 +0200 Date: Thu, 08 Jul 2021 16:12:56 +0200 Message-Id: <877di0sxlj.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #21185 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 21185 wontfix close 21185 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 (---) tags 21185 wontfix close 21185 quit From unknown Wed Jun 18 23:18:11 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, 06 Aug 2021 11:24:11 +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