From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: bulk rescheduling change? Date: Wed, 12 Sep 2012 14:29:37 -0400 Message-ID: <3920.1347474577@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> <3596.1347473565@alphaville.americas.hpqcorp.net> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBrh0-0004Au-Mk for emacs-orgmode@gnu.org; Wed, 12 Sep 2012 14:29:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TBrgy-000583-D7 for emacs-orgmode@gnu.org; Wed, 12 Sep 2012 14:29:42 -0400 Received: from g6t0184.atlanta.hp.com ([15.193.32.61]:46231) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBrgy-00057w-81 for emacs-orgmode@gnu.org; Wed, 12 Sep 2012 14:29:40 -0400 In-Reply-To: Message from Nick Dokos of "Wed, 12 Sep 2012 14:12:45 EDT." <3596.1347473565@alphaville.americas.hpqcorp.net> 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 Cc: Bastien , emacs-orgmode@gnu.org Nick Dokos wrote: > 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. > 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))) >