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: Re: Building current trunk Date: Mon, 27 Oct 2008 16:14:30 +0100 Message-ID: <4905DAD6.1050204@alice.it> References: <4905C106.9000603@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: ger.gmane.org 1225120534 4730 80.91.229.12 (27 Oct 2008 15:15:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 27 Oct 2008 15:15:34 +0000 (UTC) Cc: emacs-devel@gnu.org To: Juanma Barranquero Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 27 16:16:35 2008 connect(): Connection refused 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.50) id 1KuTpL-00032o-U5 for ged-emacs-devel@m.gmane.org; Mon, 27 Oct 2008 16:16:22 +0100 Original-Received: from localhost ([127.0.0.1]:42629 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KuTo7-0001Lt-EZ for ged-emacs-devel@m.gmane.org; Mon, 27 Oct 2008 11:15:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KuTo2-0001Lo-FR for emacs-devel@gnu.org; Mon, 27 Oct 2008 11:14:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KuTnp-0001KE-8F for emacs-devel@gnu.org; Mon, 27 Oct 2008 11:14:57 -0400 Original-Received: from [199.232.76.173] (port=58185 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KuTnp-0001KB-0q for emacs-devel@gnu.org; Mon, 27 Oct 2008 11:14:45 -0400 Original-Received: from smtp-out114.alice.it ([85.37.17.114]:2653) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KuTno-00078U-LJ for emacs-devel@gnu.org; Mon, 27 Oct 2008 11:14:45 -0400 Original-Received: from FBCMMO02.fbc.local ([192.168.68.196]) by smtp-out114.alice.it with Microsoft SMTPSVC(6.0.3790.1830); Mon, 27 Oct 2008 16:14:37 +0100 Original-Received: from FBCMCL01B02.fbc.local ([192.168.69.83]) by FBCMMO02.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Mon, 27 Oct 2008 16:14:37 +0100 Original-Received: from [87.7.216.208] ([87.7.216.208]) by FBCMCL01B02.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Mon, 27 Oct 2008 16:14:37 +0100 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) In-Reply-To: X-OriginalArrivalTime: 27 Oct 2008 15:14:37.0300 (UTC) FILETIME=[B9CF3340:01C93846] X-detected-operating-system: by monty-python.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:105046 Archived-At: Juanma Barranquero ha scritto: > On Mon, Oct 27, 2008 at 14:24, Angelo Graziosi wrote: > >> They are a few days that bootstrapping current trunk leaves an empty >> directory '.emacs.d' in my HOME. > > There's a new function `locate-user-emacs-file' that can create > .emacs.d, but it should *not* do it during bootstrap. > >> Is it to be expected? > > Not during bootstrapping, not. And, it does not create it for me. For me it happens also on GNU/Linux and I do always a clean bootstrap: CVS checkout 'plus' bootstrap from scratch. > > Please try the attached patch. It seems to solve the problem! Thanks, Angelo. > > > Index: lisp/subr.el > =================================================================== > RCS file: /sources/emacs/emacs/lisp/subr.el,v > retrieving revision 1.616 > diff -u -2 -r1.616 subr.el > --- lisp/subr.el 25 Oct 2008 09:17:44 -0000 1.616 > +++ lisp/subr.el 27 Oct 2008 13:42:44 -0000 > @@ -2171,4 +2171,5 @@ > at-home > (unless (or purify-flag ;; don't create dir while dumping > + noninteractive > (file-accessible-directory-p > (directory-file-name user-emacs-directory)))