diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2021-01-03 15:25:09 +0200 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2021-01-03 18:32:43 +0200 |
| commit | b1717751fa3363b2fe52d2b94acf1fdd993bf257 (patch) | |
| tree | ff8bf6cdb4930e76346da00f157da6f740e7029a | |
| parent | 70abdaa530c74344a54bf2e9e6db320648397d7b (diff) | |
mu4e-view: Use 'mu4e not "mu4e" when extracting
And param is a string.
Fixes: #1869.
Fixes: #1865.
| -rw-r--r-- | mu4e/mu4e-view.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index d72b9bb..a34a1d6 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -1446,7 +1446,7 @@ ATTNUM is nil ask for the attachment number." ;; server, and use it to determine the parent message (ie., the current ;; message) when showing the embedded message/rfc822, and return to the ;; current message when quitting that one. - (mu4e~view-temp-action docid index "mu4e" docid) + (mu4e~view-temp-action docid index 'mu4e (format "%s" docid)) ;; otherwise, open with the default program (handled in mu-server (mu4e~proc-extract 'open docid index mu4e-decryption-policy)))) |
