aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <amdragon@MIT.EDU>2012-03-29 00:33:42 -0400
committerDavid Bremner <bremner@debian.org>2012-06-03 13:27:07 -0300
commit44224b6259c82a20f93f19bfab83b817c8009efe (patch)
tree828b0d62043be48ba0518478cc18682597ffdaf5
parent12772b67620de6cf06c368f57fa3eb6e128b1ca3 (diff)
emacs: Suppress warnings about using cl at runtime
It was decided in the thread starting at [0] that it is okay for notmuch to use 'cl runtime functions. However, by default, these produce byte compiler warnings. This suppresses those using file-local variables. [0] id:"m262g864dz.fsf@wal122.wireless-pennnet.upenn.edu"
-rw-r--r--emacs/notmuch-lib.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index e99b48d..c829df3 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -298,3 +298,6 @@ was called."
(provide 'notmuch-lib)
+;; Local Variables:
+;; byte-compile-warnings: (not cl-functions)
+;; End: