From: Austin Clements <amdragon@MIT.EDU>
Date: Thu, 29 Mar 2012 04:33:42 +0000 (-0400)
Subject: emacs: Suppress warnings about using cl at runtime
X-Git-Tag: 0.14~103
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=44224b6259c82a20f93f19bfab83b817c8009efe;p=notmuch.git

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"
---

diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index e99b48d1..c829df32 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: