From dann@mothra.ics.uci.edu Sun Sep 28 00:16:00 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-5.3 required=4.0 tests=AWL,BAYES_00,FOURLA, MURPHY_DRUGS_REL8,RCVD_IN_DNSWL_LOW autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 28 Sep 2008 07:16:00 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m8S7Fvnl030306 for ; Sun, 28 Sep 2008 00:15:58 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KjqVY-0002K8-Vi for bug-gnu-emacs@gnu.org; Sun, 28 Sep 2008 03:15:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KjqVY-0002Jw-Fh for bug-gnu-emacs@gnu.org; Sun, 28 Sep 2008 03:15:56 -0400 Received: from [199.232.76.173] (port=45521 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KjqVY-0002Jt-96 for bug-gnu-emacs@gnu.org; Sun, 28 Sep 2008 03:15:56 -0400 Received: from mx20.gnu.org ([199.232.41.8]:50818) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KjqVX-0002tj-PW for bug-gnu-emacs@gnu.org; Sun, 28 Sep 2008 03:15:56 -0400 Received: from barrelv2.ics.uci.edu ([128.195.1.114]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KjqVW-00058X-NJ for bug-gnu-emacs@gnu.org; Sun, 28 Sep 2008 03:15:55 -0400 Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by barrelv2.ics.uci.edu (8.13.7+Sun/8.13.7) with ESMTP id m8S7Fhph016381 for ; Sun, 28 Sep 2008 00:15:47 -0700 (PDT) Received: (from dann@localhost) by mothra.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id m8S7Fg1f020280; Sun, 28 Sep 2008 00:15:42 -0700 (PDT) Date: Sun, 28 Sep 2008 00:15:42 -0700 (PDT) Message-Id: <200809280715.m8S7Fg1f020280@mothra.ics.uci.edu> From: Dan Nicolaescu To: bug-gnu-emacs@gnu.org Subject: emacs does not compile when using uClibc Lines: 61 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-ICS-MailScanner-Information: Please contact the ISP for more information X-ICS-MailScanner-ID: m8S7Fhph016381 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=0.714, required 5, autolearn=disabled, ALL_TRUSTED -1.44, FRT_BELOW2 2.15) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-detected-kernel: by mx20.gnu.org: Solaris 10 (beta) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) uClibc is an alternative libc, emacs does not work on such systems at the moment. The patch bellow fixes this. Not sure if this is a bug fix, or it's adding a new feature, so just record it here in case it's the latter. Index: src/gmalloc.c =================================================================== RCS file: /cvsroot/emacs/emacs/src/gmalloc.c,v retrieving revision 1.28 diff -u -3 -p -r1.28 gmalloc.c --- src/gmalloc.c 23 May 2008 04:39:57 -0000 1.28 +++ src/gmalloc.c 28 Sep 2008 07:08:54 -0000 @@ -1706,17 +1706,17 @@ MA 02110-1301, USA. */ #include #endif -#ifndef __GNU_LIBRARY__ +/* uClibc defines __GNU_LIBRARY__, but it is not completely + compatible. */ +#if !defined(__GNU_LIBRARY__) || defined(__UCLIBC__) #define __sbrk sbrk -#endif - -#ifdef __GNU_LIBRARY__ +#else /* __GNU_LIBRARY__ && ! defined (__UCLIBC__) */ /* It is best not to declare this and cast its result on foreign operating systems with potentially hostile include files. */ #include extern __ptr_t __sbrk PP ((ptrdiff_t increment)); -#endif +#endif /* __GNU_LIBRARY__ && ! defined (__UCLIBC__) */ #ifndef NULL #define NULL 0 Index: src/s/gnu-linux.h =================================================================== RCS file: /cvsroot/emacs/emacs/src/s/gnu-linux.h,v retrieving revision 1.113 diff -u -3 -p -r1.113 gnu-linux.h --- src/s/gnu-linux.h 2 Aug 2008 16:19:03 -0000 1.113 +++ src/s/gnu-linux.h 28 Sep 2008 07:08:54 -0000 @@ -156,11 +156,15 @@ along with GNU Emacs. If not, see _IO_write_ptr - (FILE)->_IO_write_base) -#else /* !_IO_STDIO_H */ +#elif defined (__UCLIBC__) +/* using the uClibc library */ +#define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \ + ((FILE)->__bufpos - (FILE)->__bufstart) +#else /* !_IO_STDIO_H && ! __UCLIBC__ */ /* old C++ iostream names */ #define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \ ((FILE)->_pptr - (FILE)->_pbase) -#endif /* !_IO_STDIO_H */ +#endif /* !_IO_STDIO_H && ! __UCLIBC__ */ #endif /* emacs */ /* Ask GCC where to find libgcc.a. */ From rgm@gnu.org Tue Sep 30 00:09:08 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-9.5 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, MURPHY_DRUGS_REL8,NOSUBJECT,RCVD_IN_DNSWL_MED,VALID_BTS_CONTROL, X_DEBBUGS_NO_ACK autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 30 Sep 2008 07:09:08 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m8U79505031233 for ; Tue, 30 Sep 2008 00:09:06 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1KkZJs-0005pG-11; Tue, 30 Sep 2008 03:06:52 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18657.53259.911419.789296@fencepost.gnu.org> Date: Tue, 30 Sep 2008 03:06:51 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: yellow X-Ran: s_+HQZO@rx),!y]_'g?C2]dqReo&i#?x#Vq3vdl4Azk#!}gdX,6N.hi99FY/xZ3C|tL X-Debbugs-No-Ack: yes tags 1043 patch tags 1047 unreproducible tags 1039 patch tags 1041 moreinfo reassign 1054 emacs,ns From monnier@iro.umontreal.ca Wed Oct 1 06:27:15 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-5.8 required=4.0 tests=AWL,BAYES_00,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8,RCVD_IN_DNSWL_LOW autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 1 Oct 2008 13:27:16 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m91DRBAf016091 for ; Wed, 1 Oct 2008 06:27:13 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kl1jT-00043O-G5 for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 09:27:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kl1jQ-00042B-FT for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 09:27:10 -0400 Received: from [199.232.76.173] (port=43610 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kl1jQ-000427-5a for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 09:27:08 -0400 Received: from ironport2-out.pppoe.ca ([206.248.154.182]:51195 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Kl1jP-0005u2-Qe for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 09:27:07 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArEEAOUX40jO+KDT/2dsb2JhbACBZrwmgWqBBoIe X-IronPort-AV: E=Sophos;i="4.33,343,1220241600"; d="scan'208";a="27799319" Received: from 206-248-160-211.dsl.teksavvy.com (HELO pastel.home) ([206.248.160.211]) by ironport2-out.teksavvy.com with ESMTP; 01 Oct 2008 09:27:06 -0400 Received: by pastel.home (Postfix, from userid 20848) id 8EBDD8040; Wed, 1 Oct 2008 09:27:06 -0400 (EDT) From: Stefan Monnier To: Dan Nicolaescu Cc: 1043@debbugs.gnu.org, bug-gnu-emacs@gnu.org Subject: Re: bug#1043: emacs does not compile when using uClibc Message-ID: References: <200809280715.m8S7Fg1f020280@mothra.ics.uci.edu> Date: Wed, 01 Oct 2008 09:27:06 -0400 In-Reply-To: <200809280715.m8S7Fg1f020280@mothra.ics.uci.edu> (Dan Nicolaescu's message of "Sun, 28 Sep 2008 00:15:42 -0700 (PDT)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. X-CrossAssassin-Score: 2 > uClibc is an alternative libc, emacs does not work on such systems at > the moment. The patch bellow fixes this. Not sure if this is a bug > fix, or it's adding a new feature, so just record it here in case it's > the latter. It looks safe enough. But let's just note for the future that PENDING_OUTPUT_COUNT should die. Stefan From rms@gnu.org Wed Oct 1 18:04:15 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.5 required=4.0 tests=AWL,BAYES_00,HAS_BUG_NUMBER, RCVD_IN_DNSWL_LOW autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 2 Oct 2008 01:04:15 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m9214C3H027806 for ; Wed, 1 Oct 2008 18:04:13 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KlCbz-0005O7-Vo for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 21:04:12 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KlCby-0005NO-BI for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 21:04:11 -0400 Received: from [199.232.76.173] (port=51069 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KlCby-0005NI-5j for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 21:04:10 -0400 Received: from fencepost.gnu.org ([140.186.70.10]:34834) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KlCbx-0007GA-Hb for bug-gnu-emacs@gnu.org; Wed, 01 Oct 2008 21:04:09 -0400 Received: from rms by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1KlCZm-0002QZ-AD; Wed, 01 Oct 2008 21:01:54 -0400 Content-Type: text/plain; charset=ISO-8859-15 From: "Richard M. Stallman" To: Stefan Monnier , 1043@debbugs.gnu.org CC: bug-gnu-emacs@gnu.org In-reply-to: (message from Stefan Monnier on Wed, 01 Oct 2008 09:27:06 -0400) Subject: Re: bug#1043: emacs does not compile when using uClibc Reply-to: rms@gnu.org References: <200809280715.m8S7Fg1f020280@mothra.ics.uci.edu> Message-Id: Date: Wed, 01 Oct 2008 21:01:54 -0400 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-CrossAssassin-Score: 2 It looks safe enough. But let's just note for the future that PENDING_OUTPUT_COUNT should die. That feature used to be important for making output preemption really work on remote logins. Please do not get rid of it! From monnier@iro.umontreal.ca Thu Oct 2 05:42:55 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-5.8 required=4.0 tests=AWL,BAYES_00,HAS_BUG_NUMBER, RCVD_IN_DNSWL_LOW autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 2 Oct 2008 12:42:55 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m92CgpL4008741 for ; Thu, 2 Oct 2008 05:42:53 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KlNW7-0000P0-D4 for bug-gnu-emacs@gnu.org; Thu, 02 Oct 2008 08:42:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KlNW6-0000Oo-QL for bug-gnu-emacs@gnu.org; Thu, 02 Oct 2008 08:42:50 -0400 Received: from [199.232.76.173] (port=37562 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KlNW6-0000Ol-Ls for bug-gnu-emacs@gnu.org; Thu, 02 Oct 2008 08:42:50 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:50926) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KlNW4-00032f-Lb; Thu, 02 Oct 2008 08:42:48 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApsEAP5d5EjO+KVj/2dsb2JhbACBZrsXgWqBBg X-IronPort-AV: E=Sophos;i="4.33,351,1220241600"; d="scan'208";a="27858102" Received: from 206-248-165-99.dsl.teksavvy.com (HELO pastel.home) ([206.248.165.99]) by ironport2-out.teksavvy.com with ESMTP; 02 Oct 2008 08:42:45 -0400 Received: by pastel.home (Postfix, from userid 20848) id 26A1580D0; Thu, 2 Oct 2008 08:42:44 -0400 (EDT) From: Stefan Monnier To: rms@gnu.org Cc: 1043@debbugs.gnu.org, bug-gnu-emacs@gnu.org Subject: Re: bug#1043: emacs does not compile when using uClibc Message-ID: References: <200809280715.m8S7Fg1f020280@mothra.ics.uci.edu> Date: Thu, 02 Oct 2008 08:42:44 -0400 In-Reply-To: (Richard M. Stallman's message of "Wed, 01 Oct 2008 21:01:54 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. > It looks safe enough. But let's just note for the future that > PENDING_OUTPUT_COUNT should die. > That feature used to be important for making output preemption really > work on remote logins. Please do not get rid of it! I do not understand: 1- PENDING_OUTPUT_COUNT is not a feature, but an internal implementation trick. Not sure what is the corresponding feature. 2- Why/how is it related to remote logins? 3- Why/how is it related to output preemption? Stefan From rms@gnu.org Thu Oct 2 21:19:40 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.5 required=4.0 tests=AWL,BAYES_00,HAS_BUG_NUMBER, RCVD_IN_DNSWL_LOW autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 3 Oct 2008 04:19:40 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m934Jb8K013757 for ; Thu, 2 Oct 2008 21:19:38 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Klc8e-0007Dw-SW for bug-gnu-emacs@gnu.org; Fri, 03 Oct 2008 00:19:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Klc8e-0007D1-6w for bug-gnu-emacs@gnu.org; Fri, 03 Oct 2008 00:19:36 -0400 Received: from [199.232.76.173] (port=49629 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Klc8d-0007Cr-VR for bug-gnu-emacs@gnu.org; Fri, 03 Oct 2008 00:19:35 -0400 Received: from fencepost.gnu.org ([140.186.70.10]:56102) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Klc8d-0001XQ-Mr for bug-gnu-emacs@gnu.org; Fri, 03 Oct 2008 00:19:35 -0400 Received: from rms by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1Klc6R-0000nq-Ad; Fri, 03 Oct 2008 00:17:19 -0400 Content-Type: text/plain; charset=ISO-8859-15 From: "Richard M. Stallman" To: Stefan Monnier CC: 1043@debbugs.gnu.org, bug-gnu-emacs@gnu.org In-reply-to: (message from Stefan Monnier on Thu, 02 Oct 2008 08:42:44 -0400) Subject: Re: bug#1043: emacs does not compile when using uClibc Reply-to: rms@gnu.org References: <200809280715.m8S7Fg1f020280@mothra.ics.uci.edu> Message-Id: Date: Fri, 03 Oct 2008 00:17:19 -0400 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-CrossAssassin-Score: 2 1- PENDING_OUTPUT_COUNT is not a feature, but an internal implementation trick. Not sure what is the corresponding feature. If you type a character during redisplay, it preempts output. But all the characters that are buffered have to come out on the terminal before it really succeeds in preempting. The feature which PENDING_OUTPUT_COUNT is used for is to limit the amount of output that gets buffered, so that preemption is snappy. From rgm@gnu.org Wed Oct 8 01:01:32 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.6 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT,RCVD_IN_DNSWL_MED,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 8 Oct 2008 08:01:32 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m9881TiC019336 for ; Wed, 8 Oct 2008 01:01:30 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1KnTwn-0003To-Pd; Wed, 08 Oct 2008 03:59:05 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18668.26697.695370.495963@fencepost.gnu.org> Date: Wed, 8 Oct 2008 03:59:05 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: black X-Ran: 3k05H&{[3z0}tJ:;5[(4HGrkQq5H}]@e!y2VH~"AS5#qO:ID@PM-&0wZb3LgTj!GNr}o-, X-Debbugs-No-Ack: yes retitle 1043 PENDING_OUTPUT_COUNT discussion tags 1043 = notabug tags 1092 wontfix From rgm@gnu.org Sun Oct 12 16:28:18 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.6 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT,RCVD_IN_DNSWL_MED,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 12 Oct 2008 23:28:18 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m9CNSFXs016273 for ; Sun, 12 Oct 2008 16:28:17 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1KpAJm-0000e1-Tu; Sun, 12 Oct 2008 19:25:46 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18674.34682.830998.830341@fencepost.gnu.org> Date: Sun, 12 Oct 2008 19:25:46 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: magenta X-Ran: '7Yis>}UjJQ$0@1XgIR.:Xs^H$JHI#epKnMFH~.{fO(j_+Is7s_L:F+}B#Ey[K"z#{*jsj X-Debbugs-No-Ack: yes close 1091 close 1043 severity 1102 wishlist severity 1147 wishlist severity 1150 wishlist severity 1149 wishlist From unknown Sat Aug 16 11:41:00 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: $requester Subject: Internal Control Message-Id: bug archived. Date: Mon, 10 Nov 2008 15:24:04 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A log time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator