From 1cc5e0b1c585fc1957000bf757890d07506c78bd Mon Sep 17 00:00:00 2001 Message-Id: <1cc5e0b1c585fc1957000bf757890d07506c78bd.1717723965.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 24 Apr 2016 11:41:14 +0100 Subject: [PATCH] dot/emacs: Pull in Org mode and BBDB explicitly when enabling appointments. Organization: Straylight/Edgeware From: Mark Wooding It should happen anyway because of the autoloads, only for some reason they don't trigger in Emacs 23. --- dot/emacs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dot/emacs b/dot/emacs index b8989d7..320e03c 100644 --- a/dot/emacs +++ b/dot/emacs @@ -456,7 +456,9 @@ (setq appt-display-interval 3) (setq appt-message-warning-time 10) (and (not mdw-fast-startup) - (trap (appt-activate 1))) + (trap (require 'org) + (require 'bbdb) + (appt-activate 1))) ;; Org-mode agenda. -- [mdw]