From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: ignoring autoloads in preloaded files on Windows Date: Sat, 10 Oct 2009 05:57:13 +0200 Message-ID: References: <83tyycmkjv.fsf@gnu.org> <83eipfmuaz.fsf@gnu.org> <0my40kr72.fsf@fencepost.gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1255147083 8074 80.91.229.12 (10 Oct 2009 03:58:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 10 Oct 2009 03:58:03 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 10 05:57:52 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 1MwT5c-0005QV-F0 for ged-emacs-devel@m.gmane.org; Sat, 10 Oct 2009 05:57:52 +0200 Original-Received: from localhost ([127.0.0.1]:49089 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwT5b-0004Oo-Ph for ged-emacs-devel@m.gmane.org; Fri, 09 Oct 2009 23:57:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MwT5V-0004L7-Dj for emacs-devel@gnu.org; Fri, 09 Oct 2009 23:57:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MwT5Q-0004Dq-GL for emacs-devel@gnu.org; Fri, 09 Oct 2009 23:57:44 -0400 Original-Received: from [199.232.76.173] (port=46256 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwT5Q-0004Dk-BI for emacs-devel@gnu.org; Fri, 09 Oct 2009 23:57:40 -0400 Original-Received: from mail-bw0-f220.google.com ([209.85.218.220]:60534) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MwT5K-00019B-Q4; Fri, 09 Oct 2009 23:57:35 -0400 Original-Received: by bwz20 with SMTP id 20so7170343bwz.42 for ; Fri, 09 Oct 2009 20:57:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=MLWFkdsXsHjxshDPcIyQjAgMps//o5/cu0n75KlulVw=; b=GfshAPL/Cpwllz26KPIHXUKNnMMuNcJoQAFiYgWdc/2HPYDMvWCPSei3cUCBxUUcNG sq8/oaCHuehRJvGUasmXus5O73mjcICCXTnCbzvuZmBZzm6H0bucTs1YZlkjGme81GBq 5x/itarNILVlu7UDX4/KBx+02MUJuXTigZZfU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=sDFWG0LKym9vR4IHNvDM+IihJn1OSBMDdCqnFxJjMemAOspzizyUFlXNujfn1Bd4de t/5puDneKj3L4tqeDdj3MvtwUa0pge+bSOnMy4d1P6879VMZ/0vcrkeqkHtLczLeY9zq aKpb/sPZBTt84x8VY/4fScik0DTN+HlSMsjrc= Original-Received: by 10.239.163.208 with SMTP id q16mr205358hbd.102.1255147053217; Fri, 09 Oct 2009 20:57:33 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:116045 Archived-At: On Sat, Oct 10, 2009 at 05:34, Glenn Morris wrote: > If you grep for "skipped" in the output of `make autoloads', there > should be about 90 matches if it works. There's no one "skipped" in the full log of the bootstrap, and if I delete lisp/loaddefs.el and redo it, there's no "skipped" in its output either. > Will (getenv "MAKE") DTRT on Windows? I don't think so. $(MAKE) is defined for make runs, but it is not passed as an environment variable to subrprocesses: C:\> make c:\emacs\bin\emacs.exe -Q --batch --eval '(prin1 (getenv "MAKE"))' nil OTOH, perhaps it would make sense to ask the user to define it. Juanma