From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: ignoring autoloads in preloaded files on Windows Date: Sat, 10 Oct 2009 09:37:12 +0200 Message-ID: <83zl7zk8d3.fsf@gnu.org> References: <83eipfmuaz.fsf@gnu.org> <0my40kr72.fsf@fencepost.gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1255160347 32239 80.91.229.12 (10 Oct 2009 07:39:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 10 Oct 2009 07:39:07 +0000 (UTC) Cc: emacs-devel@gnu.org To: Juanma Barranquero Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 10 09:38:57 2009 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 1MwWXZ-0007BA-80 for ged-emacs-devel@m.gmane.org; Sat, 10 Oct 2009 09:38:57 +0200 Original-Received: from localhost ([127.0.0.1]:48385 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwWXY-00056W-Nk for ged-emacs-devel@m.gmane.org; Sat, 10 Oct 2009 03:38:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MwWWC-0003cH-BA for emacs-devel@gnu.org; Sat, 10 Oct 2009 03:37:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MwWWB-0003b7-C8 for emacs-devel@gnu.org; Sat, 10 Oct 2009 03:37:31 -0400 Original-Received: from [199.232.76.173] (port=42756 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwWWB-0003ax-6O for emacs-devel@gnu.org; Sat, 10 Oct 2009 03:37:31 -0400 Original-Received: from mtaout6.012.net.il ([84.95.2.16]:25997) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MwWW9-0001Oe-Dh; Sat, 10 Oct 2009 03:37:29 -0400 Original-Received: from conversion-daemon.i-mtaout6.012.net.il by i-mtaout6.012.net.il (HyperSendmail v2007.08) id <0KRA00G00FPCSP00@i-mtaout6.012.net.il>; Sat, 10 Oct 2009 09:35:17 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.70.84.229]) by i-mtaout6.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0KRA00FBIFQSFL90@i-mtaout6.012.net.il>; Sat, 10 Oct 2009 09:35:17 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 10 (1203?) 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:116053 Archived-At: > From: Juanma Barranquero > Date: Sat, 10 Oct 2009 07:13:28 +0200 > Cc: Eli Zaretskii , emacs-devel@gnu.org > > (when (ignore-errors > (ignore-errors (delete-file tmpfile)) > (shell-command (format "make -C %s echolisp > %s" > mdir tmpfile)) The other problem with this is that the -C switch is not supported by nmake. So I think it's better to bind default-directory to mdir instead, and then read the echolisp.tmp file from that directory. (Sorry, I know the -C comes from my suggestion.)