From 91c0681781ec29cffb9c003b7f03aae17eab4ed2 Mon Sep 17 00:00:00 2001 From: Damien Garaud Date: Tue, 30 Apr 2019 18:53:12 +0200 Subject: [PATCH] mu4e: fix a remaining local variable 'short' in the function 'mu4e~action-header-to-html' --- mu4e/mu4e-actions.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-actions.el b/mu4e/mu4e-actions.el index 4523c1b3..eea57830 100644 --- a/mu4e/mu4e-actions.el +++ b/mu4e/mu4e-actions.el @@ -81,7 +81,7 @@ Works for the message view." (replace-regexp-in-string "[[:cntrl:]]" "" (cdr c)))) (addr (if mu4e-view-show-addresses (if name (format "%s <%s>" name email) email) - (short (or name email)))) ;; name may be nil + (or name email))) ;; name may be nil ;; Escape HTML entities (addr (replace-regexp-in-string "&" "&" addr)) (addr (replace-regexp-in-string "<" "<" addr))