From 7ea092cbed3f2434c5d9e1f39d4cc404352da5c1 Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 5 Oct 2013 23:56:29 -0700 Subject: [PATCH] * mu4e: fix docstring --- mu4e/mu4e-vars.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mu4e/mu4e-vars.el b/mu4e/mu4e-vars.el index afa8e38a..b4ed2438 100644 --- a/mu4e/mu4e-vars.el +++ b/mu4e/mu4e-vars.el @@ -610,11 +610,6 @@ Note, `:sortable' does not work for custom header fields.") (defvar mu4e-header-info-custom - "A list of custom (user-defined) headerr. The format is similar -to `mu4e-header-info', but addds a :function property, which should -point to a function that takes a message p-list as argument, and -returns a string. See the default value of `mu4e-header-info-custom -for an example." '( (:recipnum . ( :name "Number of recipients" :shortname "Recip#" @@ -623,7 +618,12 @@ for an example." (lambda (msg) (format "%d" (+ (length (mu4e-message-field msg :to)) - (length (mu4e-message-field msg :cc))))))))) + (length (mu4e-message-field msg :cc)))))))) +"A list of custom (user-defined) headerr. The format is similar +to `mu4e-header-info', but addds a :function property, which should +point to a function that takes a message p-list as argument, and +returns a string. See the default value of `mu4e-header-info-custom +for an example.") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;