문제

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.

도움이 되었습니까?

해결책

Try to eval this:

(add-to-list 'load-path "~/path/to/git/org-mode")
(org-reload)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top