Mac – Upgrade org-mode with Aquamacs

aquamacsemacsorg-mode

As is asked and answered in here, Aquamacs has the org-mode that is pretty old, and there are some problems with capturing.

How can I upgrade the org-mode with Aquamacs? Is it OK just copy lisp/*.el to somewhere?

Best Answer

You can put the .el files pretty much where you want to, but you'll need to add the directory to your emacs load-path with something like:

(setq load-path (cons "~/path/to/orgdir/lisp" load-path))

Stick that in your .emacs file.

There's more info on the org-mode installation page.

Related Question