Achim Gratz <strom...@nexgo.de> writes: > Am 01.01.2014 07:28, schrieb Nick Dokos: >> --8<---------------cut here---------------start------------->8--- >> (add-to-list 'load-path "~/src/emacs/org/org-mode/lisp") >> (add-to-list 'load-path "~/src/emacs/org/org-mode/contib/lisp") > > There is usually no point to include contrib in a minimal Org init, > but if you need it, it should not be first in load-path (that is, the > two lines above should be reversed and the directory name be > "contrib").
True - I guess the misspelling saved me from any troubles that contrib could have caused :-) My minimal file now starts like this: --8<---------------cut here---------------start------------->8--- ;(add-to-list 'load-path "~/src/emacs/org/org-mode/contrib/lisp") (add-to-list 'load-path "~/src/emacs/org/org-mode/lisp") (require 'org-loaddefs) ... --8<---------------cut here---------------end--------------->8--- If I need contrib, I can just uncomment the first line. Thanks, Nick