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:37:51 +0200 Message-ID: <87bpnwsb34.fsf@kassiopeya.MSHEIMNETZ> References: <871vosjypw.wl%ucecesf@ucl.ac.uk> <87fxd8sbry.fsf@kassiopeya.MSHEIMNETZ> 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 1MODc6-0003Nh-JQ for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:33:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MODc0-0003Bl-Vb for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:33:49 -0400 Received: from [199.232.76.173] (port=52566 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MODc0-0003Bb-SW for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:33:44 -0400 Received: from mail.gmx.net ([213.165.64.20]:37056) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MODc0-0000Qe-3y for emacs-orgmode@gnu.org; Tue, 07 Jul 2009 12:33:44 -0400 In-Reply-To: <87fxd8sbry.fsf@kassiopeya.MSHEIMNETZ> (Sebastian Rose's message of "Tue, 07 Jul 2009 18:22:57 +0200") 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 And, finally, here is a simple elisp function, that compiles your sources: (defvar my/org-lisp-directory "~/.emacs.d/org/lisp" "Directory where your org-mode files live.") ;; adjust my/org-lisp-directory: (setq my/org-lisp-directory "~/emacs/lisp/ext/org-mode/lisp") (defun my/compile-org() "Compile all *.el files that come with org-mode." (interactive) (dired my/org-lisp-directory) (dired-mark-files-regexp "\\.el$") (dired-do-load) (dired-do-byte-compile)) Now use M-x my/compile-org RET Sebastian