From: Jani Nikula Date: Tue, 20 Dec 2011 19:53:13 +0000 (+0200) Subject: emacs: Fix notmuch-hello-tag-list-make-query defcustom X-Git-Tag: 0.11_rc1~12 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=2f7f259d6282bc9f91f4d46067a5313aba039f7f emacs: Fix notmuch-hello-tag-list-make-query defcustom It was not possible to define custom filters or filter functions because the types were const. Remove const to allow editing. Signed-off-by: Jani Nikula --- diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el index f892ff73..698f3cb7 100644 --- a/emacs/notmuch-hello.el +++ b/emacs/notmuch-hello.el @@ -86,8 +86,9 @@ Finally this can be a function that will be called for each tag and should return a filter for that tag, or nil to hide the tag." :type '(choice (const :tag "All messages" nil) (const :tag "Unread messages" "tag:unread") - (const :tag "Custom filter" string) - (const :tag "Custom filter function" function)) + (string :tag "Custom filter" + :value "tag:unread") + (function :tag "Custom filter function")) :group 'notmuch) (defcustom notmuch-hello-hide-tags nil