From: Mark Walters <markwalters1009@gmail.com>
Date: Tue, 14 May 2013 08:13:53 +0000 (+0100)
Subject: emacs: tag: fix compile warning
X-Git-Tag: 0.16_rc1~128
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=14aef58b61656e1fe19dee224515f066137594ed;p=notmuch-old

emacs: tag: fix compile warning

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

diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el
index 75a438bf..064cfa8d 100644
--- a/emacs/notmuch-tag.el
+++ b/emacs/notmuch-tag.el
@@ -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: