Hi,
On Wed, 18 Jan 2023 at 09:53, Ihor Radchenko wrote:
> Fixed, on bugfix.
> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=5d9c9c27c
Cool! Thank you for the quick fix.
Cheers,
simon
zimoun writes:
> Obviously, loading org-element fixes the issue:
>
> $ emacs -q -l config.el --eval "(require 'org-element)" -f org-agenda
>
> Therefore, maybe the addition of such requirement in org-agenda.el could
> be enough?
Thanks for reporting!
Loading should be good enough (and does n
Hi,
The reproducer using Emacs 28.2 and Org 9.6.1 both from Guix (29efa27):
--8<---cut here---start->8---
$ cd /tmp/
$ cat config.el
(setq
org-directory "/tmp/"
org-agenda-files '("example.org"))
$ cat example.org
* TODO Stuff
$ emacs -q -l config.el -f org-a