From: Austin Clements 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: https://git.notmuchmail.org/git?a=commitdiff_plain;h=44224b6259c82a20f93f19bfab83b817c8009efe;hp=12772b67620de6cf06c368f57fa3eb6e128b1ca3;p=notmuch 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: