[PATCH 5/7] emacs: hello: require cl

Mark Walters markwalters1009 at gmail.com
Sun May 11 01:34:40 PDT 2014


We will use cl at runtime in the next patch so require cl (rather than
just having it eval-when-compile). We require it in notmuch-lib anyway
so this is no loss in requiring it here too.
---
 emacs/notmuch-hello.el |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index 6b2dedc..28e16be 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -19,7 +19,7 @@
 ;;
 ;; Authors: David Edmondson <dme at dme.org>
 
-(eval-when-compile (require 'cl))
+(require 'cl)
 (require 'widget)
 (require 'wid-edit) ; For `widget-forward'.
 
@@ -1017,3 +1017,7 @@ (defun notmuch-folder ()
 ;;
 
 (provide 'notmuch-hello)
+
+;; Local Variables:
+;; byte-compile-warnings: (not cl-functions)
+;; End:
-- 
1.7.10.4



More information about the notmuch mailing list