mu4e-proc: fix a few typos in 'view' handler

Fixes #1572.
This commit is contained in:
Dirk-Jan C. Binnema
2020-02-13 00:17:03 +02:00
parent b77b536d81
commit ef4fa46a1d

View File

@ -480,7 +480,7 @@ registered as `mu4e-view-func'."
:docid ,(if (stringp docid-or-msgid) nil docid-or-msgid) :docid ,(if (stringp docid-or-msgid) nil docid-or-msgid)
:msgid ,(if (stringp docid-or-msgid) docid-or-msgid nil) :msgid ,(if (stringp docid-or-msgid) docid-or-msgid nil)
:extract-images ,images :extract-images ,images
:extract-encrypt ,decrypt))) :extract-encrypted ,decrypt)))
(defun mu4e~proc-view-path (path &optional images decrypt) (defun mu4e~proc-view-path (path &optional images decrypt)
"View message at PATH.. "View message at PATH..
@ -488,10 +488,10 @@ Optionally, if IMAGES is non-nil, backend will any images
attached to the message, and return them as temp files. The attached to the message, and return them as temp files. The
result will be delivered to the function registered as result will be delivered to the function registered as
`mu4e-view-func'. Optionally DECRYPT." `mu4e-view-func'. Optionally DECRYPT."
(mu4e~call-mu `(view-path (mu4e~call-mu `(view
:path ,path :path ,path
:images ,images :extract-images ,images
:decrypt ,decrypt))) :extract-encrypted ,decrypt)))
(provide 'mu4e-proc) (provide 'mu4e-proc)
;;; mu4e-proc.el ends here ;;; mu4e-proc.el ends here