From 13163888a1b303c51ec63ed3ea85f17678644f60 Mon Sep 17 00:00:00 2001 From: TEC Date: Wed, 10 Nov 2021 22:24:09 +0800 Subject: [PATCH] fix(mu4e): incorrect access of from addr slot Within +mu4e/capture-msg-to-agenda, the from address is stored in the cdar not the cadr. --- modules/email/mu4e/autoload/email.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/email/mu4e/autoload/email.el b/modules/email/mu4e/autoload/email.el index cdcb832fb..5f72ba7e8 100644 --- a/modules/email/mu4e/autoload/email.el +++ b/modules/email/mu4e/autoload/email.el @@ -199,7 +199,7 @@ is tomorrow. With two prefixes, select the deadline." "[[mu4e:msgid:" (plist-get msg :message-id) "][" (truncate-string-to-width - (or (caar from) (cadr from)) 25 nil nil t) + (or (caar from) (cdar from)) 25 nil nil t) " - " (truncate-string-to-width (plist-get msg :subject) 40 nil nil t)