From d8ca5a3d7ba95155ae1cd5970d98496ca7d48fe4 Mon Sep 17 00:00:00 2001 From: Marcelo Henrique Cerri Date: Wed, 2 May 2018 23:04:50 -0300 Subject: [PATCH] mu4e: remove reference to mu4e-headers-new-thread-style The docs for the prefix variables mention the variable "mu4e-headers-new-thread-style" that was removed on a previous iteration. --- mu4e/mu4e-headers.el | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index f6ca97b9..3e1665ad 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -233,38 +233,26 @@ one of: `:date', `:subject', `:size', `:prio', `:from', `:to.', ;; thread prefix marks (defvar mu4e-headers-thread-child-prefix '("├>" . "┣▶ ") - "Prefix for messages in sub threads that do have a following sibling. - -This variable is only used when mu4e-headers-new-thread-style is non-nil.") + "Prefix for messages in sub threads that do have a following sibling.") (defvar mu4e-headers-thread-last-child-prefix '("└>" . "┗▶ ") - "Prefix for messages in sub threads that do not have a following sibling. - -This variable is only used when mu4e-headers-new-thread-style is non-nil.") + "Prefix for messages in sub threads that do not have a following sibling.") (defvar mu4e-headers-thread-connection-prefix '("│" . "┃ ") "Prefix to connect sibling messages that do not follow each other. -This prefix should have the same length as `mu4e-headers-thread-blank-prefix'. - -This variable is only used when mu4e-headers-new-thread-style is non-nil.") +This prefix should have the same length as `mu4e-headers-thread-blank-prefix'.") (defvar mu4e-headers-thread-blank-prefix '(" " . " ") "Prefix to separate non connected messages. -This prefix should have the same length as `mu4e-headers-thread-connection-prefix'. - -This variable is only used when mu4e-headers-new-thread-style is non-nil.") +This prefix should have the same length as `mu4e-headers-thread-connection-prefix'.") (defvar mu4e-headers-thread-orphan-prefix '("" . "") - "Prefix for orphan messages. - -This variable is only used when mu4e-headers-new-thread-style is non-nil.") + "Prefix for orphan messages.") (defvar mu4e-headers-thread-duplicate-prefix '("=" . "≡ ") - "Prefix for duplicate messages. - -This variable is only used when mu4e-headers-new-thread-style is non-nil.") + "Prefix for duplicate messages.") (defvar mu4e-headers-actions '( ("capture message" . mu4e-action-capture-message)