From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 05:45:12 2010 Received: (at submit) by debbugs.gnu.org; 20 Apr 2010 09:45:13 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4A12-00038J-Am for submit@debbugs.gnu.org; Tue, 20 Apr 2010 05:45:12 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4A10-00038E-FM for submit@debbugs.gnu.org; Tue, 20 Apr 2010 05:45:11 -0400 Received: from lists.gnu.org ([199.232.76.165]:55236) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1O4A0x-00051N-Gx for submit@debbugs.gnu.org; Tue, 20 Apr 2010 05:45:07 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O4A0w-0007GJ-K2 for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 05:45:06 -0400 Received: from [140.186.70.92] (port=33188 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O4A0v-0007G4-2r for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 05:45:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=unavailable version=3.3.0 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O4A0s-0006A2-G9 for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 05:45:04 -0400 Received: from qmta01.westchester.pa.mail.comcast.net ([76.96.62.16]:34107) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4A0r-00069Z-3a for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 05:45:02 -0400 Received: from omta20.westchester.pa.mail.comcast.net ([76.96.62.71]) by qmta01.westchester.pa.mail.comcast.net with comcast id 7lgU1e00A1YDfWL51ll1Us; Tue, 20 Apr 2010 09:45:01 +0000 Received: from SABUL ([68.50.111.2]) by omta20.westchester.pa.mail.comcast.net with comcast id 7loP1e0030394wc3gloPKF; Tue, 20 Apr 2010 09:48:23 +0000 From: stephe To: bug-gnu-emacs@gnu.org Subject: 23.1.96; compilation-next-error broken Date: Tue, 20 Apr 2010 05:45:02 -0400 Message-ID: <827ho24fvl.fsf@stephe-leake.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (windows-nt) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -4.7 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.8 (----) Starting from `emacs -Q': open this C file: ------------ int main (int argc, char *argv[]) { printf ("missing include\n"); printf ("missing paren"; return 0; } /* end main */ /* end of file */ ------------ (note that it is missing a #include, and is missing a paren) Attempt to compile it: M-x compile Change the compile command to: gcc test.c This gives a list of compilation errors: -*- mode: compilation; default-directory: "/home/stephe/" -*- Compilation started at Tue Apr 20 05:25:38 gcc test.c test.c: In function =E2=80=98main=E2=80=99: test.c:4: warning: incompatible implicit declaration of built-in function = =E2=80=98printf=E2=80=99 test.c:5: error: expected =E2=80=98)=E2=80=99 before =E2=80=98;=E2=80=99 to= ken test.c:7: error: expected =E2=80=98;=E2=80=99 before =E2=80=98}=E2=80=99 to= ken Compilation exited abnormally with code 1 at Tue Apr 20 05:25:38 ------------ Go to the first error: C-x ` . point is now on the line that prints "missing include". Fix the problem by adding a line "#include " at the top of the buffer. Now the line number in the next error message is wrong, but Emacs used to handle that by using markers appropriately. Now go to the next error: C-x `. Point should be on the line that prints "missing paren", but it is on the previous line (the current line 5). The problem seems to be in compilation-next-error. It has a mechanism that sets markers based on the line/column info in the error messages, assuming the file has not changed. It puts file mod timestamps in the compilation error structure to record that this has been done, so it doesn't get done again (after the buffer has changed). However, it doesn't set the timestamp in every line, and when it gets to a line without a timestamp, it processes the marker info again, which is wrong. I don't have a fix. This same bug is in trunk (emacs version 24.0.50.2, bzr rev 99948) In GNU Emacs 23.1.96.1 (i686-pc-linux-gnu, GTK+ Version 2.18.6) of 2010-04-20 on Shevek Windowing system distributor `The Cygwin/X Project', version 11.0.10706000 Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_US.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: Lisp Interaction Minor modes in effect: tooltip-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-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent input: M-x r e p o r t - e m a c s - b u g Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Load-path shadows: None found. Features: (shadow sort mail-extr message sendmail regexp-opt ecomplete rfc822 mml easymenu mml-sec password-cache mm-decode mm-bodies mm-encode mailcap mail-parse rfc2231 rfc2047 rfc2045 qp ietf-drums mailabbrev nnheader gnus-util netrc time-date mm-util mail-prsvr gmm-utils wid-edit mailheader canlock sha1 hex-util hashcash mail-utils emacsbug tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd font-setting tool-bar dnd fontset image fringe lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mldrag mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev loaddefs button minibuffer faces cus-face files text-properties overlay md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process font-render-setting gtk x-toolkit x multi-tty emacs) From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 11:37:45 2010 Received: (at 5983) by debbugs.gnu.org; 20 Apr 2010 15:37:46 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4FWD-0006pr-8J for submit@debbugs.gnu.org; Tue, 20 Apr 2010 11:37:45 -0400 Received: from pantheon-po15.its.yale.edu ([130.132.50.71]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4FWB-0006pk-H7 for 5983@debbugs.gnu.org; Tue, 20 Apr 2010 11:37:44 -0400 Received: from furry (dhcp128036014104.central.yale.edu [128.36.14.104]) (authenticated bits=0) by pantheon-po15.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id o3KFbcXX019310 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 20 Apr 2010 11:37:38 -0400 Received: by furry (Postfix, from userid 1000) id A1F61C055; Tue, 20 Apr 2010 11:37:38 -0400 (EDT) From: Chong Yidong To: Sam Steingold Subject: Re: bug#5983: 23.1.96; compilation-next-error broken References: <827ho24fvl.fsf@stephe-leake.org> Date: Tue, 20 Apr 2010 11:37:38 -0400 In-Reply-To: <827ho24fvl.fsf@stephe-leake.org> (stephe's message of "Tue, 20 Apr 2010 05:45:02 -0400") Message-ID: <87hbn6w2wt.fsf@stupidchicken.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.96 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: 5983 Cc: 5983@debbugs.gnu.org, stephe X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) Hi Sam, this bug is due to your change: 2009-10-12 Sam Steingold * progmodes/compile.el (compilation-next-error-function): Fix the timestamps if the buffer has been visited before. Reverting this change fixes the bug. Could you double-check your work? I have no idea what bug this change is trying to fix. Thanks. stephe writes: > Starting from `emacs -Q': > > open this C file: > > ------------ > int main (int argc, char *argv[]) > { > > printf ("missing include\n"); > printf ("missing paren"; > return 0; > } /* end main */ > /* end of file */ > ------------ > > (note that it is missing a #include, and is missing a paren) > > Attempt to compile it: > > M-x compile > > Change the compile command to: > > gcc test.c > > This gives a list of compilation errors: > > -*- mode: compilation; default-directory: "/home/stephe/" -*- > Compilation started at Tue Apr 20 05:25:38 > > gcc test.c > test.c: In function =E2=80=98main=E2=80=99: > test.c:4: warning: incompatible implicit declaration of built-in function= =E2=80=98printf=E2=80=99 > test.c:5: error: expected =E2=80=98)=E2=80=99 before =E2=80=98;=E2=80=99 = token > test.c:7: error: expected =E2=80=98;=E2=80=99 before =E2=80=98}=E2=80=99 = token > > Compilation exited abnormally with code 1 at Tue Apr 20 05:25:38 > ------------ > > Go to the first error: C-x ` . point is now on the line that prints > "missing include". Fix the problem by adding a line "#include " > at the top of the buffer. Now the line number in the next error message > is wrong, but Emacs used to handle that by using markers appropriately. > > Now go to the next error: C-x `. Point should be on the line that prints > "missing paren", but it is on the previous line (the current line 5). > > The problem seems to be in compilation-next-error. It has a mechanism > that sets markers based on the line/column info in the error messages, > assuming the file has not changed. It puts file mod timestamps in the > compilation error structure to record that this has been done, so it > doesn't get done again (after the buffer has changed). However, it > doesn't set the timestamp in every line, and when it gets to a line > without a timestamp, it processes the marker info again, which is wrong. From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 11:52:49 2010 Received: (at submit) by debbugs.gnu.org; 20 Apr 2010 15:52:50 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4Fkm-0006xM-Nm for submit@debbugs.gnu.org; Tue, 20 Apr 2010 11:52:49 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4EPq-0006CT-DG for submit@debbugs.gnu.org; Tue, 20 Apr 2010 10:27:07 -0400 Received: from lists.gnu.org ([199.232.76.165]:45160) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1O4EPl-0003JM-Ec for submit@debbugs.gnu.org; Tue, 20 Apr 2010 10:27:01 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O4EPl-0003NS-01 for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 10:27:01 -0400 Received: from [140.186.70.92] (port=48917 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O4EPi-0003ME-SA for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 10:26:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00,RCVD_NUMERIC_HELO, T_RP_MATCHES_RCVD autolearn=no version=3.3.0 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O4EPh-0006Oi-MT for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 10:26:58 -0400 Received: from lo.gmane.org ([80.91.229.12]:57811) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4EPh-0006Oa-Ej for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 10:26:57 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1O4EPd-00022u-6U for bug-gnu-emacs@gnu.org; Tue, 20 Apr 2010 16:26:53 +0200 Received: from 38.98.147.130 ([38.98.147.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Apr 2010 16:26:53 +0200 Received: from tzz by 38.98.147.130 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Apr 2010 16:26:53 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: bug-gnu-emacs@gnu.org connect(): No such file or directory From: Ted Zlatanov Subject: Re: bug#5983: 23.1.96; compilation-next-error broken Date: Tue, 20 Apr 2010 09:26:42 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Lines: 16 Message-ID: <87bpdegpy5.fsf@lifelogs.com> References: <827ho24fvl.fsf@stephe-leake.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 38.98.147.130 X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:zyWfRA1qx4ItR22dplJFGNoNBhI= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -3.8 (---) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Tue, 20 Apr 2010 11:52:47 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.8 (---) On Tue, 20 Apr 2010 05:45:02 -0400 stephe wrote: s> Now go to the next error: C-x `. Point should be on the line that prints s> "missing paren", but it is on the previous line (the current line 5). s> The problem seems to be in compilation-next-error. It has a mechanism s> that sets markers based on the line/column info in the error messages, s> assuming the file has not changed. It puts file mod timestamps in the s> compilation error structure to record that this has been done, so it s> doesn't get done again (after the buffer has changed). However, it s> doesn't set the timestamp in every line, and when it gets to a line s> without a timestamp, it processes the marker info again, which is wrong. I thought this was fixed with bug#5620. Ted From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 12:06:20 2010 Received: (at 5983) by debbugs.gnu.org; 20 Apr 2010 16:06:21 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4Fxs-0007bc-BD for submit@debbugs.gnu.org; Tue, 20 Apr 2010 12:06:20 -0400 Received: from pantheon-po34.its.yale.edu ([130.132.50.80]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4Fxr-0007bV-5A for 5983@debbugs.gnu.org; Tue, 20 Apr 2010 12:06:19 -0400 Received: from furry (dhcp128036014104.central.yale.edu [128.36.14.104]) (authenticated bits=0) by pantheon-po34.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id o3KG6EsW016383 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 20 Apr 2010 12:06:14 -0400 Received: by furry (Postfix, from userid 1000) id 62894C055; Tue, 20 Apr 2010 12:06:14 -0400 (EDT) From: Chong Yidong To: Ted Zlatanov , Sam Steingold Subject: Re: bug#5983: 23.1.96; compilation-next-error broken References: <827ho24fvl.fsf@stephe-leake.org> <87bpdegpy5.fsf@lifelogs.com> Date: Tue, 20 Apr 2010 12:06:14 -0400 In-Reply-To: <87bpdegpy5.fsf@lifelogs.com> (Ted Zlatanov's message of "Tue, 20 Apr 2010 09:26:42 -0500") Message-ID: <874oj6w1l5.fsf@stupidchicken.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.96 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: 5983 Cc: 5983@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) Ted Zlatanov writes: > On Tue, 20 Apr 2010 05:45:02 -0400 stephe wrote: > > s> Now go to the next error: C-x `. Point should be on the line that prints > s> "missing paren", but it is on the previous line (the current line 5). > > s> The problem seems to be in compilation-next-error. It has a mechanism > s> that sets markers based on the line/column info in the error messages, > s> assuming the file has not changed. It puts file mod timestamps in the > s> compilation error structure to record that this has been done, so it > s> doesn't get done again (after the buffer has changed). However, it > s> doesn't set the timestamp in every line, and when it gets to a line > s> without a timestamp, it processes the marker info again, which is wrong. > > I thought this was fixed with bug#5620. Aha, looks like this was checked into the trunk only. However, the fix to Bug#5620 is quite drastic, and not suitable for the emacs-23 branch. So, I have reverted the 2009-10-12 change to compilation-next-error-function in the branch. From my understanding, the problem that this change was supposed to fix is relatively minor, whereas the subsequent problem that it causes is quite serious. From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 12:07:25 2010 Received: (at control) by debbugs.gnu.org; 20 Apr 2010 16:07:25 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4Fyu-0007cS-Sz for submit@debbugs.gnu.org; Tue, 20 Apr 2010 12:07:25 -0400 Received: from pantheon-po17.its.yale.edu ([130.132.50.73]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4Fyt-0007cM-AK for control@debbugs.gnu.org; Tue, 20 Apr 2010 12:07:23 -0400 Received: from furry (dhcp128036014104.central.yale.edu [128.36.14.104]) (authenticated bits=0) by pantheon-po17.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id o3KG7INW011272 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 20 Apr 2010 12:07:18 -0400 Received: by furry (Postfix, from userid 1000) id E34E4C055; Tue, 20 Apr 2010 12:07:18 -0400 (EDT) From: Chong Yidong To: control@debbugs.gnu.org Subject: close 5983 Date: Tue, 20 Apr 2010 12:07:18 -0400 Message-ID: <87y6giumyx.fsf@stupidchicken.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) close 5983 thanks From unknown Sun Jun 22 11:32:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: Did not alter fixed versions and reopened. Date: Tue, 20 Apr 2010 18:56:01 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # Did not alter fixed versions and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 18 17:04:34 2011 Received: (at control) by debbugs.gnu.org; 18 Sep 2011 21:04:34 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R5OXS-00056q-Bt for submit@debbugs.gnu.org; Sun, 18 Sep 2011 17:04:34 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R5OXQ-00056j-95 for control@debbugs.gnu.org; Sun, 18 Sep 2011 17:04:33 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R5OSW-0006Gb-Jm for control@debbugs.gnu.org; Sun, 18 Sep 2011 22:59:28 +0200 Date: Sun, 18 Sep 2011 22:56:07 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #5983 X-MailScanner-ID: 1R5OSW-0006Gb-Jm X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1316984368.69432@C1hf02CIVLqBif5+5nbDMg X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) close 5983 From unknown Sun Jun 22 11:32:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 17 Oct 2011 11:24:07 +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