* fix the mu4e-read-option callers

This commit is contained in:
djcb 2012-06-11 16:53:29 +03:00
parent dcf2b6006c
commit 9991c6fd60
2 changed files with 5 additions and 5 deletions

View File

@ -265,12 +265,12 @@ are more than 1 (based on ORIGMSG)."
(length (mu4e~compose-create-cc-lst origmsg t))))
(response
(if (= recipnum 1)
?a ;; with one recipient, we can reply to 'all'....
'all ;; with one recipient, we can reply to 'all'....
(mu4e-read-option
"Reply to "
`( (,(format "all %d recipients" recipnum) . 'all)
("sender only" . 'sender-only))))))
(= response 'all)))
`( (,(format "all %d recipients" recipnum) . all)
("sender only" . sender-only))))))
(eq response 'all)))
(defun mu4e~compose-message-filename-construct (&optional flagstr)
"Construct a randomized name for a message file with flags FLAGSTR; it looks

View File

@ -938,7 +938,7 @@ rerun the last search with the new parameters."
'(("ascending" . nil) ("descending" . t)))))
(setq
mu4e-headers-sortfield sortfield
mu4e-headers-sort-revert revert)
mu4e-headers-sort-revert revert) ;; "descending" means "revert"
(when rerun
(mu4e-headers-rerun-search))))