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.
This commit is contained in:
Carl Worth 2009-11-13 15:49:43 -08:00
parent f9f897ae27
commit 77088624af

View file

@ -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)))