Nick Dokos <nicholas.do...@hp.com> wrote: > Nick Dokos <nicholas.do...@hp.com> wrote: > > > Bastien <b...@altern.org> wrote: > > > > > Nick Dokos <nicholas.do...@hp.com> writes: > > > > > > > Not quite: I now get the following backtrace. > > > > > > Can you send me a reproducible minimal recipe? > > > > > > > Not sure - the last thing that .emacs does is bring up the agenda. > > Let me try to investigate a bit what exactly breaks. > > > > Something goes awry with the agenda time grid. I get the error with > the appended minimal .emacs when I try to bring up the agenda with > C-c a a. >
org-agenda-format-item changed its calling sequence in b508ff69. I haven't checked all the call sites in org-agenda.el but there is a call site in org.el that apparently was missed, as well as the declaration of the function in the same file. Nick > ;;; -*- mode: emacs-lisp -*- > ;;; constant part > (add-to-list 'load-path (expand-file-name "~/src/emacs/org/org-mode/lisp")) > (add-to-list 'load-path (expand-file-name > "~/src/emacs/org/org-mode/contrib/lisp")) > > (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . > org-mode)) > > (require 'org-install) > > (setq debug-on-error t) > (setq debug-on-quit t) > (setq eval-expression-print-length nil) > (setq eval-expression-print-level nil) > > (global-set-key "\C-cl" 'org-store-link) > (global-set-key "\C-ca" 'org-agenda) > > (setq org-agenda-us-time-grid t) > (setq org-agenda-time-grid '((daily today))) >