aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-13 15:49:43 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-13 15:49:43 -0800
commit77088624afec33ab8398d97f79fa620878817688 (patch)
treea4abab0eb14c9996c46db0531401e9156d8d85bb /notmuch.el
parentf9f897ae27b4443bfa0f2d55600f5120fc1153ac (diff)
notmuch.el: Use require instead of load to get the cl functions.
Not only is "load" probably the wrong thing, but loading cl-seq befoe cl can cause complaints anyway.
Diffstat (limited to 'notmuch.el')
-rw-r--r--notmuch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.el b/notmuch.el
index 87239764..6c39ec7e 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -19,7 +19,7 @@
;
; Authors: Carl Worth <cworth@cworth.org>
-(load "cl-seq")
+(require 'cl)
(defvar notmuch-show-mode-map
(let ((map (make-sparse-keymap)))