From: Carl Worth Date: Fri, 13 Nov 2009 23:49:43 +0000 (-0800) Subject: notmuch.el: Use require instead of load to get the cl functions. X-Git-Tag: 0.1~501 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=77088624afec33ab8398d97f79fa620878817688;ds=sidebyside 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. --- 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)))