From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 06 23:10:51 2013 Received: (at submit) by debbugs.gnu.org; 7 Jul 2013 03:10:51 +0000 Received: from localhost ([127.0.0.1]:35923 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UvfND-0002Ll-At for submit@debbugs.gnu.org; Sat, 06 Jul 2013 23:10:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52504) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UvfNA-0002LL-Aa for submit@debbugs.gnu.org; Sat, 06 Jul 2013 23:10:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UvfN3-0008OC-NP for submit@debbugs.gnu.org; Sat, 06 Jul 2013 23:10:43 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-99.2 required=5.0 tests=BAYES_50,USER_IN_WHITELIST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:57106) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvfN3-0008O8-JJ for submit@debbugs.gnu.org; Sat, 06 Jul 2013 23:10:41 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54209) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvfN0-0000Lt-UW for bug-gnu-emacs@gnu.org; Sat, 06 Jul 2013 23:10:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UvfMz-0008Mn-GT for bug-gnu-emacs@gnu.org; Sat, 06 Jul 2013 23:10:38 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:31594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvfMz-0008Md-1S for bug-gnu-emacs@gnu.org; Sat, 06 Jul 2013 23:10:37 -0400 Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by userp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r673AZAJ009495 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 7 Jul 2013 03:10:36 GMT Received: from aserz7022.oracle.com (aserz7022.oracle.com [141.146.126.231]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r673AYc1003516 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 7 Jul 2013 03:10:35 GMT Received: from abhmt106.oracle.com (abhmt106.oracle.com [141.146.116.58]) by aserz7022.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r673AYA2003730 for ; Sun, 7 Jul 2013 03:10:34 GMT MIME-Version: 1.0 Message-ID: Date: Sat, 6 Jul 2013 20:10:31 -0700 (PDT) From: Drew Adams To: bug-gnu-emacs@gnu.org Subject: 24.3.50; bothersome case where `input-pending' returns t but should return nil X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.7 (607090) [OL 12.0.6668.5000 (x86)] Content-Type: multipart/mixed; boundary="__1373166634162430154abhmt106.oracle.com" 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-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.0 (----) --__1373166634162430154abhmt106.oracle.com Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Not sure what the best Subject line is for this bug. I'm having some trouble with `minibuffer-message' in the context of a standalone minibuffer frame. Messages that should appear and remain displayed for the full `minibuffer-message-timeout' period (2 sec) are shown and then immediately erased. emacs -Q Load the attached file. The code for `min-msg' is a stripped-down version of the code for `minibuffer-message'. The code for `my-sit-for' is essentially the code for `sit-for'. M-x ... That is, hit the Pause key multiple times, waiting 2 sec or more between each key press. You _should_ see an alternating message each time is pressed: ------------------- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ------------------- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ------------------- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ etc. Each message _should_ remain displayed for 2 sec, unless you hit another key (or use the mouse etc.). Instead, each message appears and then is erased so quickly that it is hard to even notice that it was displayed. If you remove the (redisplay 'FORCE) from the code then you will not even see the messages at all. If you replace the call to `my-sit-for' by the commented lines following it (in `min-msg') then you can see that the `sit-for' never returns non-nil (except the first time). Or if you uncomment the commented lines in `my-sit-for' you will see that `input-pending-p' always returns t. I am even interested in knowing a workaround. And in understanding the problem better. At one point I thought the problem might have to do with `sit-for' receiving a `switch-frame' event from `select-frame-set-focus' and (mistakenly) handling it like user input, but this does not seem to be the case. If you uncomment the commented lines in `my-sit-for' you will see that the event that causes the `input-pending' to return t is apparently `pause', i.e., hitting the Pause key. That seems wrong to me (a bug?). If you wait more than 2 sec before hitting then I do not see how `sit-for' can see the `pause' event. Unless perhaps there is some additional `sit-for' somewhere (not in the attached code). I do understand that `input-pending' does not _guarantee_ to return nil when there is no pending input. But I would like some way to control the behavior in this scenario.=20 Thx. In GNU Emacs 24.3.50.1 (i686-pc-mingw32) of 2013-07-01 on LEG570 Bzr revision: 113246 lekktu@gmail.com-20130701165437-ea20s94hqwp3ttaj Windowing system distributor `Microsoft Corp.', version 6.1.7601 Configured using: `configure --prefix=3D/c/usr --enable-checking CFLAGS=3D'-O0 -g3' CPPFLAGS=3D'-DGLYPH_DEBUG=3D1 -I/c/usr/include'' --__1373166634162430154abhmt106.oracle.com Content-Type: application/octet-stream; name="throw-bug-sit-for.el" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="throw-bug-sit-for.el" KGRlZnVuIGZvbyAoKQ0KICAoaW50ZXJhY3RpdmUpDQogIChjb25kICgoZXEgKHNlbGVjdGVkLXdp bmRvdykgKGFjdGl2ZS1taW5pYnVmZmVyLXdpbmRvdykpDQogICAgICAgICAoc3dpdGNoLXRvLWJ1 ZmZlci1vdGhlci13aW5kb3cgIipNZXNzYWdlcyoiKQ0KICAgICAgICAgKG1pbi1tc2cgIi0tLS0t LS0tLS0tLS0tLS0tLS0iKSkNCiAgICAgICAgKHQNCiAgICAgICAgIChzZWxlY3QtZnJhbWUtc2V0 LWlucHV0LWZvY3VzICh3aW5kb3ctZnJhbWUgKGFjdGl2ZS1taW5pYnVmZmVyLXdpbmRvdykpKQ0K ICAgICAgICAgKHNlbGVjdC13aW5kb3cgKGFjdGl2ZS1taW5pYnVmZmVyLXdpbmRvdykpDQogICAg ICAgICAobWluLW1zZyAiQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCIpKSkpDQoN CihnbG9iYWwtc2V0LWtleSAoa2JkICI8cGF1c2U+IikgJ2ZvbykNCg0KKGRlZnVuIG1pbi1tc2cg KG1lc3NhZ2UpDQogIChzYXZlLXNlbGVjdGVkLXdpbmRvdw0KICAgIChzZWxlY3Qtd2luZG93ICht aW5pYnVmZmVyLXdpbmRvdykpDQogICAgKHdpdGgtY3VycmVudC1idWZmZXIgKHdpbmRvdy1idWZm ZXIgKGFjdGl2ZS1taW5pYnVmZmVyLXdpbmRvdykpDQogICAgICAobWVzc2FnZSBuaWwpDQogICAg ICAobGV0ICgob2wgKG1ha2Utb3ZlcmxheSAocG9pbnQtbWF4KSAocG9pbnQtbWF4KSBuaWwgdCB0 KSkNCiAgICAgICAgICAgIChpbmhpYml0LXF1aXQgdCkpDQogICAgICAgICh1bndpbmQtcHJvdGVj dA0KICAgICAgICAgICAgIChwcm9nbiAodW5sZXNzICh6ZXJvcCAobGVuZ3RoIG1lc3NhZ2UpKQ0K ICAgICAgICAgICAgICAgICAgICAgIChwdXQtdGV4dC1wcm9wZXJ0eSAwIDEgJ2N1cnNvciB0IG1l c3NhZ2UpKQ0KICAgICAgICAgICAgICAgICAgICAob3ZlcmxheS1wdXQgb2wgJ2FmdGVyLXN0cmlu ZyBtZXNzYWdlKQ0KICAgICAgICAgICAgICAgICAgICAocmVkaXNwbGF5ICdGT1JDRSkNCiAgICAg ICAgICAgICAgICAgICAgKG15LXNpdC1mb3IgKG9yIG1pbmlidWZmZXItbWVzc2FnZS10aW1lb3V0 IDEwMDAwMDApKQ0KICAgICAgICAgICAgICAgICAgICA7OyAod2hlbiAobXktc2l0LWZvciAob3Ig bWluaWJ1ZmZlci1tZXNzYWdlLXRpbWVvdXQgMTAwMDAwMCkpDQogICAgICAgICAgICAgICAgICAg IDs7ICAobWVzc2FnZSAiKysrKysrKysrKysrKysrKysiKShzbGVlcC1mb3IgMikpDQogICAgICAg ICAgICAgICAgICAgICkNCiAgICAgICAgICAoZGVsZXRlLW92ZXJsYXkgb2wpKSkpKSkNCg0KKGRl ZnVuIG15LXNpdC1mb3IgKHNlY29uZHMgJm9wdGlvbmFsIG5vZGlzcCBvYnNvbGV0ZSkNCiAgKGlm IChudW1iZXJwIG5vZGlzcCkNCiAgICAgIChzZXRxIHNlY29uZHMgKCsgc2Vjb25kcyAoKiAxZS0z IG5vZGlzcCkpDQogICAgICAgICAgICBub2Rpc3Agb2Jzb2xldGUpDQogICAgKGlmIG9ic29sZXRl IChzZXRxIG5vZGlzcCBvYnNvbGV0ZSkpKQ0KICAoY29uZA0KICAgKG5vbmludGVyYWN0aXZlDQog ICAgKHNsZWVwLWZvciBzZWNvbmRzKQ0KICAgIHQpDQogICAoKGFuZCAoaW5wdXQtcGVuZGluZy1w KQ0KICAgICAgICAgOzsgKHByb2duIChtZXNzYWdlICJldmVudDogJVMiIGxhc3QtaW5wdXQtZXZl bnQpIChzbGVlcC1mb3IgMSkNCiAgICAgICAgIDs7ICAgICAgICB0DQogICAgICAgICApDQogICAg bmlsKQ0KICAgKCg8PSBzZWNvbmRzIDApDQogICAgKG9yIG5vZGlzcCAocmVkaXNwbGF5KSkpDQog ICAodA0KICAgIChvciBub2Rpc3AgKHJlZGlzcGxheSkpDQogICAgKGxldCAoKHJlYWQgKHJlYWQt ZXZlbnQgbmlsIG5pbCBzZWNvbmRzKSkpDQogICAgICAob3IgKG51bGwgcmVhZCkNCiAgICAgICAg ICAocHJvZ24NCiAgICAgICAgICAgIChpZiAoZXEgb3ZlcnJpZGluZy10ZXJtaW5hbC1sb2NhbC1t YXAgdW5pdmVyc2FsLWFyZ3VtZW50LW1hcCkNCiAgICAgICAgICAgICAgICAoc2V0cSByZWFkIChj b25zIHQgcmVhZCkpKQ0KICAgICAgICAgICAgKHB1c2ggcmVhZCB1bnJlYWQtY29tbWFuZC1ldmVu dHMpDQogICAgICAgICAgICBuaWwpKSkpKSkNCg0KKHNldHEgbWluaWJ1ZmZlci1mcmFtZS1hbGlz dCAnKChtaW5pYnVmZmVyIC4gb25seSkpKQ0KKHNldHEgZGVmYXVsdC1taW5pYnVmZmVyLWZyYW1l ICAobWFrZS1mcmFtZSBtaW5pYnVmZmVyLWZyYW1lLWFsaXN0KSkNCihzZXRxIGRlZmF1bHQtZnJh bWUtYWxpc3QgJygobWluaWJ1ZmZlcikpKQ0KDQo= --__1373166634162430154abhmt106.oracle.com-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 19 21:59:36 2021 Received: (at 14810) by debbugs.gnu.org; 20 Jan 2021 02:59:36 +0000 Received: from localhost ([127.0.0.1]:52350 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l23iZ-0007eT-Ux for submit@debbugs.gnu.org; Tue, 19 Jan 2021 21:59:36 -0500 Received: from quimby.gnus.org ([95.216.78.240]:39410) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l23iX-0007eB-Tf for 14810@debbugs.gnu.org; Tue, 19 Jan 2021 21:59:34 -0500 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=Tp9P/5nlukCHEa2TV7v2fdx/RZgfDGzlp14g1OgxZ94=; b=mQQY9F6rIeqfoalTUZV2rQeI+i 5ymR/pVkLYj4GbNres11L066TMg7YEQSh3dtfbb6Jdnxlp/+d8wEqyQTJqhIY1oWKwpRk6L3R2GhC ybZkLnrnMLfnOe0KZwY0NysHFGFMIga+gmnC9roW0Qn1i5zfQwH3kE3JFYzrIU+73+eU=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l23iN-0008Mj-MA; Wed, 20 Jan 2021 03:59:27 +0100 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#14810: 24.3.50; bothersome case where `input-pending' returns t but should return nil References: X-Now-Playing: Saxon Lee & The Shadows International's _Nigeria 70 (No Wahala: Highlife, Afro-Funk & Juju 1973-1987)_: "Special Secret Of Baby" Date: Wed, 20 Jan 2021 03:59:22 +0100 In-Reply-To: (Drew Adams's message of "Sat, 6 Jul 2013 20:10:31 -0700 (PDT)") Message-ID: <87k0s848l1.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: > I'm having some trouble with `minibuffer-message' in the context of a > standalone minibuffer frame. Messages that should appear and remain > displayed for the full `minibuffer-message-timeout' peri [...] 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: 14810 Cc: 14810@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 (-) Drew Adams writes: > I'm having some trouble with `minibuffer-message' in the context of a > standalone minibuffer frame. Messages that should appear and remain > displayed for the full `minibuffer-message-timeout' period (2 sec) > are shown and then immediately erased. > > emacs -Q > > Load the attached file. (I'm going through old bug reports that unfortunately got no response at the time.) The code in this area has been substantially reworked in the years since you've reported this problem. Are you still seeing this in more recent Emacs versions? If so, do you have a simpler recipe to reproduce it? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 19 21:59:42 2021 Received: (at control) by debbugs.gnu.org; 20 Jan 2021 02:59:42 +0000 Received: from localhost ([127.0.0.1]:52353 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l23ig-0007eo-5c for submit@debbugs.gnu.org; Tue, 19 Jan 2021 21:59:42 -0500 Received: from quimby.gnus.org ([95.216.78.240]:39424) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l23id-0007eR-Tu for control@debbugs.gnu.org; Tue, 19 Jan 2021 21:59:40 -0500 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=eay6fxf9CDk0r9KBZs+9XCf56b2Ou15I51YdAsR7z7k=; b=B+z49NH6QCh3g+YZgUtZlmeQf5 Dx6gn2OdNjwclUu09YWjGNjW8fgDISTXu6fCn5GHVWjXjxkRplihE2l6xkpre4fIhwpXaPt3Jw1xU L2/BzSX/GycadoDFNh0Ncs1IqOfuMp2UrzrbibhB2dRI0dWJiDdCzvdduAE3M5uO31gc=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l23iW-0008Mq-9O for control@debbugs.gnu.org; Wed, 20 Jan 2021 03:59:34 +0100 Date: Wed, 20 Jan 2021 03:59:31 +0100 Message-Id: <87im7s48ks.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14810 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 14810 + 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.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 14810 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 22 10:17:11 2021 Received: (at 14810) by debbugs.gnu.org; 22 Feb 2021 15:17:11 +0000 Received: from localhost ([127.0.0.1]:57147 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lECxT-0005si-0Q for submit@debbugs.gnu.org; Mon, 22 Feb 2021 10:17:11 -0500 Received: from quimby.gnus.org ([95.216.78.240]:48842) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lECxR-0005nA-Ih for 14810@debbugs.gnu.org; Mon, 22 Feb 2021 10:17:09 -0500 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=lcZgAmafJxeIsSpxz1kMPym0IGyBj5aIgra5KiwfMW0=; b=J4bPKpgcuoQCJGbCjvCyNiKap4 VLrjTLsFR+RP5N+MX4cSFM6NQKRH3D31XJKimx6hvKl2dgwbBo6I5kq5Jcr6wr5ti+ft3F5BNExFp nAu3OuoiJiGsmyrYYU1Lj9W4qfQQFha5ZJik9K6JBijDlRPZhI3myRbgtb31eF1H8SNA=; 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 1lECxC-0006Tj-FT; Mon, 22 Feb 2021 16:17:02 +0100 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#14810: 24.3.50; bothersome case where `input-pending' returns t but should return nil References: <87k0s848l1.fsf@gnus.org> X-Now-Playing: Ford & Lopatin's _Channel Pressure Remixes_: "Emergency Room (Gavin Russom Remix)" Date: Mon, 22 Feb 2021 16:16:53 +0100 In-Reply-To: <87k0s848l1.fsf@gnus.org> (Lars Ingebrigtsen's message of "Wed, 20 Jan 2021 03:59:22 +0100") Message-ID: <87blcci13u.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: > The code in this area has been substantially reworked in the years since > you've reported this problem. Are you still seeing this in more recent > Emacs versions? If so, do you have a simpler recip [...] 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: 14810 Cc: 14810@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 (-) Lars Ingebrigtsen writes: > The code in this area has been substantially reworked in the years since > you've reported this problem. Are you still seeing this in more recent > Emacs versions? If so, do you have a simpler recipe to reproduce it? 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 Mon Feb 22 10:17:17 2021 Received: (at control) by debbugs.gnu.org; 22 Feb 2021 15:17:17 +0000 Received: from localhost ([127.0.0.1]:57150 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lECxZ-0005xa-Ao for submit@debbugs.gnu.org; Mon, 22 Feb 2021 10:17:17 -0500 Received: from quimby.gnus.org ([95.216.78.240]:48880) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lECxX-0005sI-MC for control@debbugs.gnu.org; Mon, 22 Feb 2021 10:17:16 -0500 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=1sF15QsCEJ5+VPtlmNw3QmkdrYriKJp+ZXQ/3grFkQo=; b=gpBurZMyCmYzRdZlVNAJ8yF0dZ 0fVn7ONuwh+ZxlzsE2OEWZCnDQ6aymaCB4vqLNVh05fN8dU/7IO8BkPXEe2sKUG0ZgJ8PDlY2vHki 76iINE+9obpzK+tpdEHNJQL7qX5RFovd6lehL9f98cymmJcpfbAwtmAPR5vfE2A11VoA=; 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 1lECxO-0006U1-5b for control@debbugs.gnu.org; Mon, 22 Feb 2021 16:17:10 +0100 Date: Mon, 22 Feb 2021 16:17:04 +0100 Message-Id: <87a6rwi13j.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14810 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 14810 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 (-) close 14810 quit From unknown Sat Aug 09 09:34:36 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 23 Mar 2021 11:24:37 +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