aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Austin Clements <amdragon@MIT.EDU>2012-08-08 17:40:10 -0400
committerGravatar David Bremner <bremner@debian.org>2012-08-12 21:05:08 +0200
commit07b5f97202c840d97bd9f53c62c4192a6b0adf30 (patch)
tree7c49ae66dea86132c9c1059bce6096ad427df601 /emacs
parent6b820673fc9c2483572af5ec7ea91e4d7d7258c9 (diff)
emacs: Fix "not defined at runtime" warning
Previously, the Emacs byte compiler produced the warning the function `remove-if-not' might not be defined at runtime. because we only required cl at compile-time (not runtime). This fixes this warning by requiring cl at runtime, ensuring that the definition of remove-if-not is available.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch-lib.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index 30db58ff..900235bc 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -24,7 +24,7 @@
(require 'mm-view)
(require 'mm-decode)
(require 'json)
-(eval-when-compile (require 'cl))
+(require 'cl)
(defvar notmuch-command "notmuch"
"Command to run the notmuch binary.")