From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric J Haywiser Subject: org-5.15 & emacs 21 compatibility: time-date.el version issue Date: Thu, 29 Nov 2007 15:54:06 -0500 (EST) Message-ID: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IxqOq-0002D9-RP for emacs-orgmode@gnu.org; Thu, 29 Nov 2007 15:54:20 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IxqOq-0002Cl-3A for emacs-orgmode@gnu.org; Thu, 29 Nov 2007 15:54:20 -0500 Received: from biscayne-one-station.mit.edu ([18.7.7.80]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IxqOp-0007yQ-Mb for emacs-orgmode@gnu.org; Thu, 29 Nov 2007 15:54:19 -0500 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 Cc: larsi@gnus.org Dear orgers, Sometime between org-5.10 and org-5.15 the agenda command C-a a began initiatating a call to a new command time-subtract. Unfortunately, time-subtract is not present in the time-date.el that is shipped with some emacs 21. In the older date-time.el subtract-time is provided instead. Adding the following to ones startup under emacs 21 seems resolve this: (load-library "time-date") (if (not(fboundp 'time-subtract)) (defalias 'time-subtract 'subtract-time) ) Would distributing such tweaks/backports in an emacs21 subdir of org much like the xemacs tweaks be appropriate?