Question

I installed emacs 24.3.2 from git. In this version there is org 7.9 released. Next I installed last org-mode from git and compiled it (make autoload).

Now I need to launch org-reload to have the latest version (8) else I have the builtin version (7.9).

So I had in init.el: (call-interactively 'org-reload)

returns:

Cannot open load file: ob.el

So I guess I have to call it after org is loaded (add-hook 'after-init-hook). But the same error appears.

So I don't know how to have the last org-mode installed on my current emacs24.3.2 which already have a builtin org-mode.

Was it helpful?

Solution

Try to eval this:

(add-to-list 'load-path "~/path/to/git/org-mode")
(org-reload)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top