From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: bulk rescheduling change? Date: Wed, 12 Sep 2012 14:12:45 -0400 Message-ID: <3596.1347473565@alphaville.americas.hpqcorp.net> References: <87mx0vi81a.fsf@altern.org> <8103.1347464053@alphaville> <8419.1347464859@alphaville> <87ligfxlk1.fsf@altern.org> <9459.1347467106@alphaville> <87627jxkvs.fsf@altern.org> <2861.1347471570@alphaville> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40439) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBrQj-0005F7-VZ for emacs-orgmode@gnu.org; Wed, 12 Sep 2012 14:12:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TBrQf-00061y-4g for emacs-orgmode@gnu.org; Wed, 12 Sep 2012 14:12:53 -0400 Received: from g1t0028.austin.hp.com ([15.216.28.35]:35081) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBrQe-00061l-VT for emacs-orgmode@gnu.org; Wed, 12 Sep 2012 14:12:49 -0400 In-Reply-To: Message from Nick Dokos of "Wed, 12 Sep 2012 13:39:30 EDT." <2861.1347471570@alphaville> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien , emacs-orgmode@gnu.org Nick Dokos wrote: > Bastien wrote: > > > Nick Dokos 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---