projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1cc515
)
emacs: tag: fix compile warning
author
Mark Walters
<markwalters1009@gmail.com>
Tue, 14 May 2013 08:13:53 +0000
(09:13 +0100)
committer
David 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
patch
|
blob
|
history
diff --git
a/emacs/notmuch-tag.el
b/emacs/notmuch-tag.el
index 75a438bfc5de5895183d6fee3208672dee66f332..064cfa8d81154535e3055c1265927e435fa2cae9 100644
(file)
--- 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: