emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Updating Emacs to latest org-release on MS Windows?


From: Sebastian Rose
Subject: Re: [Orgmode] Updating Emacs to latest org-release on MS Windows?
Date: Tue, 07 Jul 2009 18:37:51 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]