From 77088624afec33ab8398d97f79fa620878817688 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 13 Nov 2009 15:49:43 -0800 Subject: [PATCH] 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. --- notmuch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -(load "cl-seq") +(require 'cl) (defvar notmuch-show-mode-map (let ((map (make-sparse-keymap))) -- 2.43.0