Re: [O] org-agenda.el acquired a dependency on org-clock.el

2011-08-19 Thread Bastien
Nick Dokos writes: > Commit 8c3ecbe3 introduced a new dependency > > org-agenda.el --> org-clock.el > > by moving the org-hh:mm-string-to-minutes etc. functions into org-clock.el. > Presumably, org-agenda.el now needs a I reverted this change, so you should not have this error anymore. HTH, -

Re: [O] org-agenda.el acquired a dependency on org-clock.el

2011-08-18 Thread Achim Gratz
Nick Dokos writes: > (require 'org-clock) > > in my init file to resolve the dependency, but that feels wrong. It probably is... the three functions should get an autoload cookie, I suppose. Their declaration then deals with the compilation and the autoload in org-install keeps things happy at r

Re: [O] org-agenda.el acquired a dependency on org-clock.el

2011-08-17 Thread Nick Dokos
Nick Dokos wrote: > > Commit 8c3ecbe3 introduced a new dependency > > org-agenda.el --> org-clock.el > > by moving the org-hh:mm-string-to-minutes etc. functions into org-clock.el. > Presumably, org-agenda.el now needs a > > (require 'org-clock) > ... except that that creates a circular d

[O] org-agenda.el acquired a dependency on org-clock.el

2011-08-17 Thread Nick Dokos
Commit 8c3ecbe3 introduced a new dependency org-agenda.el --> org-clock.el by moving the org-hh:mm-string-to-minutes etc. functions into org-clock.el. Presumably, org-agenda.el now needs a (require 'org-clock) Nick