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,
-
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
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
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