Запустив пример руководства org, https://orgmode.org/manual/Capture-templates.html
Я оцениваю следующий код в emacs:
(setq org-capture-templates
'(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
"* TODO %?\n %i\n %a")
("j" "Journal" entry (file+olp+datetree "~/org/journal.org")
"* %?\nEntered on %U\n %i\n %a")))
Затем я запускаю M-x org-capture t
.Распечатывается следующая ошибка, и я ничего не могу записать: org-capture: Capture template ‘t’: listp
Вот полная обратная трассировка:
Debugger entered--Lisp error: (error "Capture template ‘t’: listp")
signal(error ("Capture template ‘t’: listp"))
error("Capture template `%s': %s" "t" listp)
org-capture(nil)
funcall-interactively(org-capture nil)
call-interactively(org-capture nil nil)
command-execute(org-capture)