* org-5.15 & emacs 21 compatibility: time-date.el version issue
@ 2007-11-29 20:54 Eric J Haywiser
0 siblings, 0 replies; only message in thread
From: Eric J Haywiser @ 2007-11-29 20:54 UTC (permalink / raw)
To: emacs-orgmode; +Cc: larsi
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?
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-29 20:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-29 20:54 org-5.15 & emacs 21 compatibility: time-date.el version issue Eric J Haywiser
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.