From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tassilo Horn Subject: Org errors while building agenda: (void-function org-hh:mm-string-to-minutes) Date: Fri, 19 Aug 2011 17:39:44 +0200 Message-ID: <8762ltwgu7.fsf@tsdh.uni-koblenz.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:49320) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QuRAu-0005CN-4L for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 11:40:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QuRAt-0006FJ-6i for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 11:40:00 -0400 Received: from lo.gmane.org ([80.91.229.12]:44828) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QuRAt-0006FF-1e for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 11:39:59 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QuRAr-0005st-Uw for emacs-orgmode@gnu.org; Fri, 19 Aug 2011 17:39:57 +0200 Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Aug 2011 17:39:57 +0200 Received: from tassilo by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Aug 2011 17:39:57 +0200 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: emacs-orgmode@gnu.org Hi, it seems commit commit 8c3ecbe39a0c99e3724246d1eb460495a53721b6 Author: Bastien Guerry Date: Wed Aug 17 16:08:02 2011 +0200 Move three functions and add appropriate require/declarations. * org-clock.el (org-duration-string-to-minutes) (org-minutes-to-hh:mm-string, org-hh:mm-string-to-minutes): Move from org.el. has broken my agenda. I get Debugger entered--Lisp error: (void-function org-hh:mm-string-to-minutes) org-hh:mm-string-to-minutes("16:30") org-format-agenda-item(...) because that function has been moved to org-clock.el, which I don't use. If I require that, the agenda works again. org-agenda.el contains `declare-function' statements for the three moved functions to silence the byte compiler, but it does not require org-clock in `org-format-agenda-item' nor do the three functions have autoload cookies. BTW: What's the original intention of the move? I don't see why those functions are specific to org-clock... Bye, Tassilo