From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Perry Smith Newsgroups: gmane.emacs.help Subject: Re: autoload Date: Mon, 24 Jan 2011 13:42:42 -0600 Message-ID: <5CBC83FC-D863-4E41-B8CE-B016D37FA33D@gmail.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1295898242 24816 80.91.229.12 (24 Jan 2011 19:44:02 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 24 Jan 2011 19:44:02 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Stefan Monnier Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 24 20:43:57 2011 Return-path: Envelope-to: geh-help-gnu-emacs@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 1PhSKQ-0007kC-MJ for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Jan 2011 20:43:54 +0100 Original-Received: from localhost ([127.0.0.1]:34267 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PhSKP-0007WF-Pf for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Jan 2011 14:43:53 -0500 Original-Received: from [140.186.70.92] (port=34655 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PhSJM-0007G9-3r for help-gnu-emacs@gnu.org; Mon, 24 Jan 2011 14:42:49 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PhSJK-0005Pe-1Q for help-gnu-emacs@gnu.org; Mon, 24 Jan 2011 14:42:47 -0500 Original-Received: from mail-qw0-f41.google.com ([209.85.216.41]:40452) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PhSJJ-0005PT-Sc for help-gnu-emacs@gnu.org; Mon, 24 Jan 2011 14:42:45 -0500 Original-Received: by qwa26 with SMTP id 26so4322363qwa.0 for ; Mon, 24 Jan 2011 11:42:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:mime-version:content-type:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to:x-mailer; bh=fL8LVrm8UnCMrk80ma3PRX9BaEtSuIw3dbaXzlBun7o=; b=aF+YzdlhtB9ydPbLp+8VNtehS/wJMX5A+NuTpTaGoG3ufS/rYpSLziVo32x2C5F2ZX J+EY0SmI7cSdVuGCPq7eSvo4xICrZ12SVgFjwOCTNaofcp4cYFHWzENfHSxIel/xSh7H d+KHbEoL8DF0/h1IsOKnWEiTfUuG0pjVbrb8E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; b=qwiB24WjiYDFBGQgm5CmhBP9DV88SI6IyN/9iBUGBEDi8eHROJ8+iSPGOZRxOBWrXx CsPCUP0SEdhtu3cp1EKmKur9zbJXgt82Pb6NFyIJAW6HYSICxD9FuQd3iui6a1NR+cA2 3g/3and8fyjouhY7vp+VMWsPZfpMOayAB959g= Original-Received: by 10.224.28.141 with SMTP id m13mr4381350qac.350.1295898165263; Mon, 24 Jan 2011 11:42:45 -0800 (PST) Original-Received: from newtoy.austin.ibm.com ([32.97.110.54]) by mx.google.com with ESMTPS id w12sm8481438qco.32.2011.01.24.11.42.43 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 24 Jan 2011 11:42:44 -0800 (PST) In-Reply-To: X-Mailer: Apple Mail (2.1082) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:78717 Archived-At: On Jan 24, 2011, at 11:28 AM, Stefan Monnier wrote: >>>> I just spent the past few hours constructing various scripts to >>>> automatically byte compile the new files >>> As in byte-recompile-directory? >> Roughtly. but batch-byte-recompile-directory does not create the elc = if it >> doesn't already exist unless you wrap it. So I wrote: >=20 >> (defun batch-byte-recompile-directory-all () >> (batch-byte-recompile-directory 0)) >=20 > IIRC you can use >=20 > --eval "(batch-byte-recompile-directory 0)" >=20 > so you don't have to define a new function. Ahh... I saw that on another post on this thread but I never thought about it. I figured there must be a way to do it, otherwise, why would it take an argument? Thanks... now I have another tool in my bag. Perry