Merge pull request #1414 from garaud/fix-mu4e-action-header

mu4e: fix a remaining local variable 'short'
This commit is contained in:
Dirk-Jan C. Binnema
2019-05-01 08:36:39 +03:00
committed by GitHub

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))