mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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:
parent
f9f897ae27
commit
77088624af
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue