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. Thanks, Nick --8<---------------cut here---------------start------------->8--- ;;; -*- 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))) --8<---------------cut here---------------end--------------->8---