From ef4fa46a1d9c6b2f1f0bc28da1c5274a69ffccbb Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 13 Feb 2020 00:17:03 +0200 Subject: [PATCH] mu4e-proc: fix a few typos in 'view' handler Fixes #1572. --- mu4e/mu4e-proc.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el index 5bbc26e8..732719ce 100644 --- a/mu4e/mu4e-proc.el +++ b/mu4e/mu4e-proc.el @@ -480,7 +480,7 @@ registered as `mu4e-view-func'." :docid ,(if (stringp docid-or-msgid) nil docid-or-msgid) :msgid ,(if (stringp docid-or-msgid) docid-or-msgid nil) :extract-images ,images - :extract-encrypt ,decrypt))) + :extract-encrypted ,decrypt))) (defun mu4e~proc-view-path (path &optional images decrypt) "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 result will be delivered to the function registered as `mu4e-view-func'. Optionally DECRYPT." - (mu4e~call-mu `(view-path + (mu4e~call-mu `(view :path ,path - :images ,images - :decrypt ,decrypt))) + :extract-images ,images + :extract-encrypted ,decrypt))) (provide 'mu4e-proc) ;;; mu4e-proc.el ends here