diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-01-29 17:59:08 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2021-01-29 17:59:08 -0500 |
commit | 2f938bf59a901ef97c44d92ab2deea7f2588f55d (patch) | |
tree | aff984c6e62b6fe9b39e5b6922bc5ee0969f8d36 | |
parent | c4d9bdebc98f8ab38790bceba0f33f34a42d4ce0 (diff) | |
download | piem-2f938bf59a901ef97c44d92ab2deea7f2588f55d.tar.gz |
notmuch: Define group for piem-notmuch-mode
Silence this warning:
defcustom for ‘piem-notmuch-mode’
fails to specify containing group
(I'm not sure why, but I don't see this when I run `make compile'.)
Reported-by: Jonas Bernoulli <jonas@bernoul.li>
-rw-r--r-- | piem-notmuch.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/piem-notmuch.el b/piem-notmuch.el index 37e695b..5c0cd62 100644 --- a/piem-notmuch.el +++ b/piem-notmuch.el @@ -33,6 +33,10 @@ (require 'piem) (require 'subr-x) +(defgroup piem-notmuch nil + "Notmuch integration for piem." + :group 'piem) + (defmacro piem-notmuch--with-current-message (&rest body) (declare (indent 0) (debug (body))) (let ((rv (make-symbol "rv"))) |