From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastien Delafond Subject: Problem in org-expiry-process-entry Date: Sun, 1 Feb 2009 21:46:40 +0000 (UTC) Message-ID: <20090201134349.846@usenet.piggo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LTkCb-00025W-L8 for emacs-orgmode@gnu.org; Sun, 01 Feb 2009 16:50:05 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LTkCZ-00025F-Tt for emacs-orgmode@gnu.org; Sun, 01 Feb 2009 16:50:05 -0500 Received: from [199.232.76.173] (port=54783 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LTkCZ-00025C-Oy for emacs-orgmode@gnu.org; Sun, 01 Feb 2009 16:50:03 -0500 Received: from main.gmane.org ([80.91.229.2]:50089 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LTkCZ-0002Hx-7S for emacs-orgmode@gnu.org; Sun, 01 Feb 2009 16:50:03 -0500 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1LTkCY-0007SN-C6 for emacs-orgmode@gnu.org; Sun, 01 Feb 2009 21:50:02 +0000 Received: from 64.2.3.200 ([64.2.3.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 01 Feb 2009 21:50:02 +0000 Received: from sdelafond by 64.2.3.200 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 01 Feb 2009 21:50:02 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello, without redefining org-expiry-handler-function in my .emacs, all my calls to org-expiry-process-entry result in the following: Symbol's function definition is void: org-expiry-handler-function I find that the following patch fixes it for me: ======================================================================== --- contrib.orig/org-expiry.el 2009-01-26 09:06:12.000000000 -0800 +++ contrib/org-expiry.el 2009-02-01 10:00:47.000000000 -0800 @@ -247,7 +247,7 @@ (not (interactive))) (and org-expiry-confirm-flag (y-or-n-p (format "Entry expired by %d days. Process? " d)))) - (funcall 'org-expiry-handler-function)) + (funcall org-expiry-handler-function)) (org-delete-overlay ov))))) (defun org-expiry-process-entries (beg end) ======================================================================== Am I missing something ? :) Cheers, --Seb