]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: tag: fix compile warning
authorMark Walters <markwalters1009@gmail.com>
Tue, 14 May 2013 08:13:53 +0000 (09:13 +0100)
committerDavid Bremner <bremner@debian.org>
Thu, 16 May 2013 01:23:58 +0000 (22:23 -0300)
When compiling notmuch-tag.el there is a compile warning:
notmuch-tag.el:27:1:Warning: cl package required at runtime

Since we have decided to allow runtime use of cl we suppress this
warning by adding a tail comment to the file.

emacs/notmuch-tag.el

index 75a438bfc5de5895183d6fee3208672dee66f332..064cfa8d81154535e3055c1265927e435fa2cae9 100644 (file)
@@ -292,3 +292,7 @@ begin with a \"+\" or a \"-\". If REVERSE is non-nil, replace all
 ;;
 
 (provide 'notmuch-tag)
+
+;; Local Variables:
+;; byte-compile-warnings: (not cl-functions)
+;; End: