From 8669fd86a782e8c226980da1b65301fe0d76f946 Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 19 Oct 2013 12:06:04 +0300 Subject: [PATCH] * mu4e: small improvement in mu4e-headers-found-hook defcustom --- mu4e/mu4e-headers.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index 683a4a14..372b8b98 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -152,6 +152,13 @@ REPLIED SEEN TRASHED ATTACH ENCRYPTED SIGNED UNREAD)." (const :tag "Unread" unread)) :group 'mu4e-headers) +(defcustom mu4e-headers-found-hook nil + "Hook run just *after* all of the headers for the last search +query have been received and are displayed." + :type 'hook + :group 'mu4e-headers) + + ;; marks for headers of the form; each is a cons-cell (basic . fancy) ;; each of which is basic ascii char and something fancy, respectively (defvar mu4e-headers-draft-mark (purecopy '("D" . "⚒")) "Draft.") @@ -210,10 +217,6 @@ PREDICATE-FUNC as PARAM. This is useful for getting user-input.") "Whether to show all results. If this is nil show results up to `mu4e-search-results-limit')") -(defvar mu4e-headers-found-hook nil - "Hook run just *after* all of the headers for the last search -query have been received and are displayed.") - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;