mu4e: fix a remaining local variable 'short'

in the function 'mu4e~action-header-to-html'
This commit is contained in:
Damien Garaud 2019-04-30 18:53:12 +02:00
parent a2c27c0c5a
commit 91c0681781
1 changed files with 1 additions and 1 deletions

View File

@ -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 "&" "&amp;" addr))
(addr (replace-regexp-in-string "<" "&lt;" addr))