Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-25 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22/02/13 16:42, Achim Gratz wrote: Bastien bzg at altern.org writes: Just for clarifications: is there any problem with adding ORG_ADD_CONTRIB = * to the local.mk file, apart from slightly longer compilation times? This should be okay,

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-25 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22/02/13 22:17, Achim Gratz wrote: Rainer M Krug writes: Ok - that makes sense. I just checked in my contrib/lisp and I only have .el there, so none are compiled. Look in lisp, not contrib/lisp. True - because it compiles it there. If

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-25 Thread Bastien
Rainer M Krug r.m.k...@gmail.com writes: Quick follow up question - what is the value for the Ubuntu package? I'm not using Ubuntu so I don't know, sorry! -- Bastien

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-25 Thread Achim Gratz
Rainer M Krug writes: Well - I could and I guess nothing would change. Why I like my setup at the moment is, that I have all emacs config, installation and elpa in my .emacs.d directory. Would this be the same after using make up2? Would I have to change paths somewhere? You can install

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-22 Thread Bastien
Hi Rainer, Rainer M Krug r.m.k...@gmail.com writes: #ORG_ADD_CONTRIB = org-e-* org-md org-export # e.g. the new exporter The comment above was outdated since org-e-* files don't exist anymore. I updated it. So I would have to add ORG_ADD_CONTRIB = org-notmuch to the local.mk file This

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-22 Thread Bastien
Rainer M Krug r.m.k...@gmail.com writes: Just for clarifications: is there any problem with adding ORG_ADD_CONTRIB = * to the local.mk file, apart from slightly longer compilation times? This should be okay, but it's not safe. If any non-emacs-lisp file gets added to contrib/lisp/ (e.g. a

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-22 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22/02/13 14:39, Bastien wrote: Hi Rainer, Rainer M Krug r.m.k...@gmail.com writes: #ORG_ADD_CONTRIB = org-e-* org-md org-export # e.g. the new exporter The comment above was outdated since org-e-* files don't exist anymore. I updated

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-22 Thread Achim Gratz
Bastien bzg at altern.org writes: Just for clarifications: is there any problem with adding ORG_ADD_CONTRIB = * to the local.mk file, apart from slightly longer compilation times? This should be okay, but it's not safe. If any non-emacs-lisp file gets added to contrib/lisp/ (e.g. a

Re: [O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-22 Thread Achim Gratz
Rainer M Krug writes: Ok - that makes sense. I just checked in my contrib/lisp and I only have .el there, so none are compiled. Look in lisp, not contrib/lisp. If you set the load-path to include the contrib/lisp/ directory, then you don't need to install org-notmuch, and (require

[O] Correct / best way of loading packages in contrib when using org compiled from git?

2013-02-21 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi I am using org-mode from git and compile it. I would like to use the org-notmuch module in the contrib directory, and I activate it using: (add-to-list 'load-path ~/.emacs.d/org-mode/contrib/lisp) (require 'org-notmuch) But, as Suvayo