From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Updating Emacs to latest org-release on MS Windows? Date: Tue, 07 Jul 2009 18:15:39 +0200 Message-ID: <87k52ksc44.fsf@kassiopeya.MSHEIMNETZ> References: <871vosjypw.wl%ucecesf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MODGd-0002uM-SO for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:11:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MODGW-0002po-Mb for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:11:39 -0400 Received: from [199.232.76.173] (port=37923 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MODGW-0002pc-Ed for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:11:32 -0400 Received: from mail.gmx.net ([213.165.64.20]:56062) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MODGV-0004oH-Kg for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:11:32 -0400 In-Reply-To: <871vosjypw.wl%ucecesf@ucl.ac.uk> (Eric S. Fraga's message of "Tue, 07 Jul 2009 16:32:11 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric S Fraga Cc: Org Mode Eric S Fraga writes: > However, in the standard software on this computer, there is no > (gnu)make equivalent installed. Therefore, I have the same need as > Stefan. Is there maybe an elisp script/function that can take the > place of the make command used to prepare all the .elc files for > org-mode pulled from the git repository? C-x d path/to/orgs/el/files/ RET % m \.el RET L B L: loads all marked files B: compiles all marked files As an alternative, a list of the *.el files in the correct order would be a nice think to have. We have `byte-compile-file' to compile the files: byte-compile-file is an interactive compiled Lisp function in `bytecomp.el'. (byte-compile-file bytecomp-filename &optional load) Compile a file of Lisp code named bytecomp-filename into a file of byte code. The output file's name is generated by passing bytecomp-filename to the function `byte-compile-dest-file' (which see). With prefix arg (noninteractively: 2nd arg), load the file after compiling. The value is non-nil if there were no errors, nil if errors. Sebastian