diff options
| author | Damien Garaud <damien.garaud@oslandia.com> | 2019-04-30 18:53:12 +0200 |
|---|---|---|
| committer | Damien Garaud <damien.garaud@oslandia.com> | 2019-04-30 18:53:12 +0200 |
| commit | 91c0681781ec29cffb9c003b7f03aae17eab4ed2 (patch) | |
| tree | 0c5245594f14885f830f401a11cc4bf611816144 /mu4e | |
| parent | a2c27c0c5a8baf834d7c71fc2463dfdc305297d4 (diff) | |
mu4e: fix a remaining local variable 'short'
in the function 'mu4e~action-header-to-html'
Diffstat (limited to 'mu4e')
| -rw-r--r-- | mu4e/mu4e-actions.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mu4e/mu4e-actions.el b/mu4e/mu4e-actions.el index 4523c1b..eea5783 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)) |
