From 150234cb5fab6dec9a83aebccd4dcc6110ec96b5 Mon Sep 17 00:00:00 2001 From: Mekeor Melire Date: Mon, 30 Oct 2017 23:57:02 +0100 Subject: [PATCH] mu4e: fix bug preventing mu4e-headers-change-sorting to sort by list The little bug was caused by a little confusion of the key for list-IDs. Namely, we use `:list` and not `:list-id` for list-IDs. --- mu4e/mu4e-headers.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index a6ff9de2..468fe5c7 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -208,7 +208,7 @@ but also manually invoked searches." (defvar mu4e-headers-sort-field :date "Field to sort the headers by. Must be a symbol, one of: `:date', `:subject', `:size', `:prio', `:from', `:to.', -`:list-id'") +`:list'") (defvar mu4e-headers-sort-direction 'descending "Direction to sort by; a symbol either `descending' (sorting @@ -291,7 +291,7 @@ followed by the docid, followed by `mu4e~headers-docid-post'.") (defvar mu4e~headers-sort-field-choices '( ("date" . :date) ("from" . :from) - ("list" . :list-id) + ("list" . :list) ("maildir" . :maildir) ("prio" . :prio) ("zsize" . :size)