diff options
| author | Nicolas Petton <nicolas@petton.fr> | 2016-03-16 09:19:55 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-03-19 11:18:03 -0300 |
| commit | e253c94888046926794f58124cbd2a219501ab1b (patch) | |
| tree | ab8199aced2524618256f1f3bbc1f5ddef0cb4a1 | |
| parent | 557965b8fae3d7923cee0fb8d9b298173e73a264 (diff) | |
emacs: Change the default notmuch-mua-reply-insert-header-p-function
Set notmuch-show-reply-insert-header-p-never as the default value for
notmuch-mua-reply-insert-header-p-function.
| -rw-r--r-- | emacs/notmuch-mua.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index fcb3e951..4cb714a4 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -94,19 +94,19 @@ Note that these functions use `mail-citation-hook' if that is non-nil." :group 'notmuch-reply) (defcustom notmuch-mua-reply-insert-header-p-function - 'notmuch-show-reply-insert-header-p-trimmed + 'notmuch-show-reply-insert-header-p-never "Function to decide which parts get a header when replying. This function specifies which parts of a mime message with mutiple parts get a header." - :type '(radio (const :tag "All except multipart/* and hidden parts" - notmuch-show-reply-insert-header-p-trimmed) + :type '(radio (const :tag "No part headers" + notmuch-show-reply-insert-header-p-never) + (const :tag "All except multipart/* and hidden parts" + notmuch-show-reply-insert-header-p-trimmed) (const :tag "Only for included text parts" notmuch-show-reply-insert-header-p-minimal) (const :tag "Exactly as in show view" notmuch-show-insert-header-p) - (const :tag "No part headers" - notmuch-show-reply-insert-header-p-never) (function :tag "Other")) :group 'notmuch-reply) |
