From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 25 11:04:52 2013 Received: (at submit) by debbugs.gnu.org; 25 Oct 2013 15:04:52 +0000 Received: from localhost ([127.0.0.1]:43582 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZiwV-0008LW-Mg for submit@debbugs.gnu.org; Fri, 25 Oct 2013 11:04:52 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48352) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZiwT-0008LB-0v for submit@debbugs.gnu.org; Fri, 25 Oct 2013 11:04:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VZiwF-0001js-D8 for submit@debbugs.gnu.org; Fri, 25 Oct 2013 11:04: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=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44217) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZiwF-0001jn-94 for submit@debbugs.gnu.org; Fri, 25 Oct 2013 11:04:35 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50031) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZiw7-0006X8-Ml for bug-gnu-emacs@gnu.org; Fri, 25 Oct 2013 11:04:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VZivz-0001f7-5M for bug-gnu-emacs@gnu.org; Fri, 25 Oct 2013 11:04:27 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:16579) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZivy-0001dx-QT for bug-gnu-emacs@gnu.org; Fri, 25 Oct 2013 11:04:19 -0400 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by aserp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r9PF4Gc2026754 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 25 Oct 2013 15:04:17 GMT Received: from userz7021.oracle.com (userz7021.oracle.com [156.151.31.85]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r9PF4FPX029507 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 25 Oct 2013 15:04:16 GMT Received: from abhmt106.oracle.com (abhmt106.oracle.com [141.146.116.58]) by userz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r9PF4FRF012055 for ; Fri, 25 Oct 2013 15:04:15 GMT MIME-Version: 1.0 Message-ID: <5f2f5004-0d43-45c6-8285-dfcf2a3deb5e@default> Date: Fri, 25 Oct 2013 08:04:14 -0700 (PDT) From: Drew Adams To: bug-gnu-emacs@gnu.org Subject: 24.3.50; redisplay bug for display-table update X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8 (707110) [OL 12.0.6680.5000 (x86)] Content-Type: multipart/mixed; boundary="__1382713455077223816abhmt106.oracle.com" X-Source-IP: acsinet22.oracle.com [141.146.126.238] 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 (----) --__1382713455077223816abhmt106.oracle.com Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable This seems to be a regression; I have never seen it before. See attached screenshots, from the same session. The bad one (NG) was taken after `C-l', which should have taken care of any redisplay problem. The good one (OK) was taken after then iconifying (thumbifying, actually) and then restoring the frame - that took care of the display problem. The part of the displayed buffer that got messed up is the result of modifying the display table for character ^L - what looks like a sunken line of text "Section (Printable Page)" is in fact just a ^L character. The code that does this is here: http://www.emacswiki.org/emacs-en/download/pp-c-l.el. This is the part of the code that updates the display table: (lambda (window) (let ((display-table (or (window-display-table window) (make-display-table)))) (aset display-table ?\014 (and pretty-control-l-mode (pp^L-^L-display-table-entry window))) (set-window-display-table window display-table))) BTW/FWIW - I think I have also noticed, with this build (perhaps other recent builds too?), the need to hit `C-l' more often. Until now I have probably used `C-l' only a few times over the last decade or so - hasn't been needed. (In the old days it was needed much more often.) HTH. In GNU Emacs 24.3.50.1 (i686-pc-mingw32) of 2013-10-19 on LEG570 Bzr revision: 114715 rgm@gnu.org-20131019023520-s8mwtib7xcx9e05w Windowing system distributor `Microsoft Corp.', version 6.1.7601 Configured using: `configure --enable-checking 'CFLAGS=3D-O0 -g3' CPPFLAGS=3D-DGLYPH_DEBUG= =3D1' --__1382713455077223816abhmt106.oracle.com Content-Type: image/png; name="throw-emacs-redisplay-bug-OK.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="throw-emacs-redisplay-bug-OK.png" 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 TkSuQmCC --__1382713455077223816abhmt106.oracle.com Content-Type: image/png; name="throw-emacs-redisplay-bug-NG.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="throw-emacs-redisplay-bug-NG.png" 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 --__1382713455077223816abhmt106.oracle.com-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 25 11:27:26 2013 Received: (at 15716) by debbugs.gnu.org; 25 Oct 2013 15:27:26 +0000 Received: from localhost ([127.0.0.1]:43615 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZjIM-0000wc-0x for submit@debbugs.gnu.org; Fri, 25 Oct 2013 11:27:26 -0400 Received: from mtaout20.012.net.il ([80.179.55.166]:51631) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZjII-0000vy-QD for 15716@debbugs.gnu.org; Fri, 25 Oct 2013 11:27:24 -0400 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MV800N00DKQ3800@a-mtaout20.012.net.il> for 15716@debbugs.gnu.org; Fri, 25 Oct 2013 18:27:02 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MV800NZYDL22S00@a-mtaout20.012.net.il>; Fri, 25 Oct 2013 18:27:02 +0300 (IDT) Date: Fri, 25 Oct 2013 18:26:53 +0300 From: Eli Zaretskii Subject: Re: bug#15716: 24.3.50; redisplay bug for display-table update In-reply-to: <5f2f5004-0d43-45c6-8285-dfcf2a3deb5e@default> X-012-Sender: halo1@inter.net.il To: Drew Adams Message-id: <83eh79gyma.fsf@gnu.org> References: <5f2f5004-0d43-45c6-8285-dfcf2a3deb5e@default> X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 15716 Cc: 15716@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Eli Zaretskii 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 (+) > Date: Fri, 25 Oct 2013 08:04:14 -0700 (PDT) > From: Drew Adams > > See attached screenshots, from the same session. The bad one (NG) was > taken after `C-l', which should have taken care of any redisplay > problem. `C-l' does not necessarily do a redisplay, at least not by default. It did so in the past, but ceased to since Emacs 23.1, where `C-l' was bound to 'recenter-top-bottom' instead of 'recenter'. > The good one (OK) was taken after then iconifying (thumbifying, > actually) and then restoring the frame - that took care of the display > problem. > > The part of the displayed buffer that got messed up is the result of > modifying the display table for character ^L - what looks like a sunken > line of text "Section (Printable Page)" is in fact just a ^L character. > The code that does this is here: > http://www.emacswiki.org/emacs-en/download/pp-c-l.el. > > This is the part of the code that updates the display table: > > (lambda (window) > (let ((display-table (or (window-display-table window) > (make-display-table)))) > (aset display-table ?\014 (and pretty-control-l-mode > (pp^L-^L-display-table-entry window))) > (set-window-display-table window display-table))) Emacswiki seems to be off-line. But unless you are saying that turning on this feature _always_ results in garbled display, I will need a recipe to reproduce the problem, or else it is impossible to debug it. > BTW/FWIW - I think I have also noticed, with this build (perhaps other > recent builds too?), the need to hit `C-l' more often. Until now I have > probably used `C-l' only a few times over the last decade or so - hasn't > been needed. (In the old days it was needed much more often.) You read too much into what `C-l' does. I recommend redraw-display, if you want to force a thorough redisplay. Anyway, all those situations should be reported, if they are reproducible. You shouldn't need to force redisplay manually. From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 25 11:53:26 2013 Received: (at 15716) by debbugs.gnu.org; 25 Oct 2013 15:53:26 +0000 Received: from localhost ([127.0.0.1]:43664 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZjhW-0002H0-17 for submit@debbugs.gnu.org; Fri, 25 Oct 2013 11:53:26 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:44220) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZjhT-0002GS-Ve for 15716@debbugs.gnu.org; Fri, 25 Oct 2013 11:53:24 -0400 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by aserp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r9PFrHxC023529 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 25 Oct 2013 15:53:17 GMT Received: from aserz7021.oracle.com (aserz7021.oracle.com [141.146.126.230]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r9PFrGgh007641 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 25 Oct 2013 15:53:16 GMT Received: from abhmt106.oracle.com (abhmt106.oracle.com [141.146.116.58]) by aserz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r9PFrG6D026556; Fri, 25 Oct 2013 15:53:16 GMT MIME-Version: 1.0 Message-ID: Date: Fri, 25 Oct 2013 08:53:15 -0700 (PDT) From: Drew Adams To: Eli Zaretskii , Drew Adams Subject: RE: bug#15716: 24.3.50; redisplay bug for display-table update References: <<5f2f5004-0d43-45c6-8285-dfcf2a3deb5e@default>> <<83eh79gyma.fsf@gnu.org>> In-Reply-To: <<83eh79gyma.fsf@gnu.org>> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8 (707110) [OL 12.0.6680.5000 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Source-IP: acsinet22.oracle.com [141.146.126.238] X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: 15716 Cc: 15716@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: -2.7 (--) > `C-l' does not necessarily do a redisplay, at least not by default. > It did so in the past, but ceased to since Emacs 23.1, where `C-l' > was bound to 'recenter-top-bottom' instead of 'recenter'. OK. So the only bug is in the display, not in `C-l' not fixing the problem. > Emacswiki seems to be off-line. It's back up. It was down for a few minutes. I reported it to the wiki maintainer. > But unless you are saying that > turning on this feature _always_ results in garbled display, I will > need a recipe to reproduce the problem, or else it is impossible to > debug it. No, this feature does not cause the problem. There is apparently a display problem that occurred this one time. I was surprised, as I said, because I have never seen it before. (And I mistakenly expected `C-l' to fix it.) I do not have a recipe to repro it. I was hoping=20 that perhaps the description, wrt display-table modification, might ring a bell wrt recent Emacs changes. If not, I guess there's nothing you can do at this point. From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 25 14:22:51 2013 Received: (at 15716) by debbugs.gnu.org; 25 Oct 2013 18:22:51 +0000 Received: from localhost ([127.0.0.1]:43864 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZm26-00078Y-Bs for submit@debbugs.gnu.org; Fri, 25 Oct 2013 14:22:50 -0400 Received: from mtaout22.012.net.il ([80.179.55.172]:37676) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZm23-00078G-2f for 15716@debbugs.gnu.org; Fri, 25 Oct 2013 14:22:48 -0400 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0MV800300LGI4M00@a-mtaout22.012.net.il> for 15716@debbugs.gnu.org; Fri, 25 Oct 2013 21:22:03 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MV8003Y8LOR2P30@a-mtaout22.012.net.il>; Fri, 25 Oct 2013 21:22:03 +0300 (IDT) Date: Fri, 25 Oct 2013 21:21:55 +0300 From: Eli Zaretskii Subject: Re: bug#15716: 24.3.50; redisplay bug for display-table update In-reply-to: X-012-Sender: halo1@inter.net.il To: Drew Adams Message-id: <83d2mtgqik.fsf@gnu.org> References: X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 15716 Cc: 15716@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Eli Zaretskii 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 (+) > Date: Fri, 25 Oct 2013 08:53:15 -0700 (PDT) > From: Drew Adams > Cc: 15716@debbugs.gnu.org > > > Emacswiki seems to be off-line. > > It's back up. It was down for a few minutes. I reported it to the > wiki maintainer. It seems to be down again. > > But unless you are saying that > > turning on this feature _always_ results in garbled display, I will > > need a recipe to reproduce the problem, or else it is impossible to > > debug it. > > No, this feature does not cause the problem. There is apparently a > display problem that occurred this one time. I was surprised, as I > said, because I have never seen it before. (And I mistakenly expected > `C-l' to fix it.) I do not have a recipe to repro it. I was hoping > that perhaps the description, wrt display-table modification, might > ring a bell wrt recent Emacs changes. If not, I guess there's nothing > you can do at this point. I'll at least try to load the feature and see if I can reproduce the garbled display. When (if) it happens next, I suggest to "C-h l" and record both your keystrokes and what you remember you were doing last. A list of major mode and minor modes in effect in that buffer might also be important. From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 25 14:33:08 2013 Received: (at 15716) by debbugs.gnu.org; 25 Oct 2013 18:33:08 +0000 Received: from localhost ([127.0.0.1]:43882 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZmC4-0007PT-5f for submit@debbugs.gnu.org; Fri, 25 Oct 2013 14:33:08 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:32557) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VZmC2-0007Oy-Ap for 15716@debbugs.gnu.org; Fri, 25 Oct 2013 14:33:06 -0400 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by aserp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r9PIWxqB030515 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 25 Oct 2013 18:33:00 GMT Received: from userz7021.oracle.com (userz7021.oracle.com [156.151.31.85]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r9PIWw0x015975 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 25 Oct 2013 18:32:59 GMT Received: from abhmt106.oracle.com (abhmt106.oracle.com [141.146.116.58]) by userz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r9PIWwA0012774; Fri, 25 Oct 2013 18:32:58 GMT MIME-Version: 1.0 Message-ID: Date: Fri, 25 Oct 2013 11:32:57 -0700 (PDT) From: Drew Adams To: Eli Zaretskii , Drew Adams Subject: RE: bug#15716: 24.3.50; redisplay bug for display-table update References: <> <<83d2mtgqik.fsf@gnu.org>> In-Reply-To: <<83d2mtgqik.fsf@gnu.org>> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8 (707110) [OL 12.0.6680.5000 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Source-IP: acsinet22.oracle.com [141.146.126.238] X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: 15716 Cc: 15716@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: -2.7 (--) > I'll at least try to load the feature and see if I can reproduce the > garbled display. OK, but I doubt that you will be able to. As I say, I have seen the problem only once. > When (if) it happens next, I suggest to "C-h l" and record both your > keystrokes and what you remember you were doing last. A list of > major mode and minor modes in effect in that buffer might also be > important. OK. From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 25 20:10:43 2015 Received: (at 15716) by debbugs.gnu.org; 26 Dec 2015 01:10:43 +0000 Received: from localhost ([127.0.0.1]:36418 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aCdNa-0008J9-RA for submit@debbugs.gnu.org; Fri, 25 Dec 2015 20:10:42 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:43906) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aCdNZ-0008J2-Mm for 15716@debbugs.gnu.org; Fri, 25 Dec 2015 20:10:42 -0500 Received: from 2.150.58.24.tmi.telenormobil.no ([2.150.58.24] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aCdNC-00085a-F4; Sat, 26 Dec 2015 02:10:18 +0100 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#15716: 24.3.50; redisplay bug for display-table update References: > <83d2mtgqik.fsf@gnu.org>> Date: Sat, 26 Dec 2015 02:10:17 +0100 In-Reply-To: (Drew Adams's message of "Fri, 25 Oct 2013 11:32:57 -0700 (PDT)") Message-ID: <87k2o2ggli.fsf@gnus.org> User-Agent: Gnus/5.130014 (Ma Gnus v0.14) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1aCdNC-00085a-F4 X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1451697019.30774@MqTLyICMNFQhg+dfBuIQUQ X-Spam-Status: No X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 15716 Cc: Eli Zaretskii , 15716@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.7 (/) Drew Adams writes: >> I'll at least try to load the feature and see if I can reproduce the >> garbled display. > > OK, but I doubt that you will be able to. As I say, I have seen the > problem only once. > >> When (if) it happens next, I suggest to "C-h l" and record both your >> keystrokes and what you remember you were doing last. A list of >> major mode and minor modes in effect in that buffer might also be >> important. > > OK. Apparently this didn't happen the next two years, so I'm closing this bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 25 20:10:45 2015 Received: (at control) by debbugs.gnu.org; 26 Dec 2015 01:10:45 +0000 Received: from localhost ([127.0.0.1]:36421 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aCdNd-0008JO-0c for submit@debbugs.gnu.org; Fri, 25 Dec 2015 20:10:45 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:43913) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aCdNb-0008JG-No for control@debbugs.gnu.org; Fri, 25 Dec 2015 20:10:44 -0500 Received: from 2.150.58.24.tmi.telenormobil.no ([2.150.58.24] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aCdNF-00085n-Gq for control@debbugs.gnu.org; Sat, 26 Dec 2015 02:10:21 +0100 Date: Sat, 26 Dec 2015 02:10:20 +0100 Message-Id: <87io3mgglf.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #15716 X-MailScanner-ID: 1aCdNF-00085n-Gq X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1451697022.13186@rGrmyAviqjICcMo2o11cDA X-Spam-Status: No X-Spam-Score: -0.7 (/) 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: -0.7 (/) close 15716 From unknown Sun Aug 17 02:00:49 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 23 Jan 2016 12:24:05 +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