aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Mark Walters <markwalters1009@gmail.com>2013-05-14 09:13:53 +0100
committerGravatar David Bremner <bremner@debian.org>2013-05-15 22:23:58 -0300
commit14aef58b61656e1fe19dee224515f066137594ed (patch)
tree286091b55d80c985ad0fab06550b6e21319d9ded /emacs
parente1cc5159b0fde48c1faa417b0e1e4fca015aa376 (diff)
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.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch-tag.el4
1 files changed, 4 insertions, 0 deletions
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: