From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.devel Subject: On Emacs cleanup Date: Wed, 19 May 2010 11:34:08 +0200 Message-ID: <4BF3B090.90607@alice.it> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1274263302 23755 80.91.229.12 (19 May 2010 10:01:42 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 19 May 2010 10:01:42 +0000 (UTC) To: Emacs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 19 12:01:39 2010 connect(): No such file or directory Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OEg5q-0004uC-4x for ged-emacs-devel@m.gmane.org; Wed, 19 May 2010 12:01:38 +0200 Original-Received: from localhost ([127.0.0.1]:50295 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEg5p-0003Wp-Le for ged-emacs-devel@m.gmane.org; Wed, 19 May 2010 06:01:37 -0400 Original-Received: from [140.186.70.92] (port=47430 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEg5h-0003Wf-Lj for emacs-devel@gnu.org; Wed, 19 May 2010 06:01:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEg5f-0001oe-4d for emacs-devel@gnu.org; Wed, 19 May 2010 06:01:29 -0400 Original-Received: from smtp-out20.alice.it ([85.33.2.20]:4195) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEg5e-0001np-VR for emacs-devel@gnu.org; Wed, 19 May 2010 06:01:27 -0400 Original-Received: from FBCMMO03.fbc.local ([192.168.68.197]) by smtp-out20.alice.it with Microsoft SMTPSVC(6.0.3790.3959); Wed, 19 May 2010 11:34:16 +0200 Original-Received: from FBCMCL01B03.fbc.local ([192.168.69.84]) by FBCMMO03.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Wed, 19 May 2010 11:34:16 +0200 Original-Received: from [87.3.34.167] ([87.3.34.167]) by FBCMCL01B03.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Wed, 19 May 2010 11:34:14 +0200 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.1.9) Gecko/20100317 Thunderbird/3.0.4 X-OriginalArrivalTime: 19 May 2010 09:34:14.0448 (UTC) FILETIME=[71E30B00:01CAF736] X-detected-operating-system: by eggs.gnu.org: Windows 2000 SP4, XP SP1+ X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:124930 Archived-At: I am seeing, these days, there are a lot of cleanup and restructuring in Emacs trunk. The following is not much important, anyway I want to flag it. They are a few year I build Emacs on Cygwin with this patch: ========== diff -Naur emacs.orig/src/sheap.c emacs/src/sheap.c --- emacs.orig/src/sheap.c 2009-10-19 17:14:39.000000000 +0200 +++ emacs/src/sheap.c 2009-10-23 00:01:57.187500000 +0200 @@ -41,9 +41,7 @@ if (!bss_sbrk_ptr) { bss_sbrk_ptr = bss_sbrk_buffer; -#ifdef CYGWIN sbrk (BLOCKSIZE); /* force space for fork to work */ -#endif } if (!(int) request_size) ========== It is very simple, and was born by the fact that someone, on this list, suggested me that the file src/sheap.c is used only in the Cygwin build. If you can confirm that, perhaps applying the above patch could contribute to the cleanup :-) Ciao, Angelo.