* mu4e.texi: small fix for actions example

This commit is contained in:
djcb 2012-04-22 11:33:56 +03:00
parent 607de43ae9
commit 6162b282ce
1 changed files with 1 additions and 1 deletions

View File

@ -1051,7 +1051,7 @@ Suppose we would like to inspect the number of recipients for a message in the
(defun show-number-of-recipients (msg)
"Display the number of recipients for this message."
(message "Number of recipients: %d"
(+ (length (mu4e-msg-field :to)) (length (mu4e-msg-field :cc)))))
(+ (length (mu4e-msg-field msg :to)) (length (mu4e-msg-field msg :cc)))))
(add-to-list 'mu4e-headers-actions
'("Number of recipients" ?n show-number-of-recipients) t)