Merge pull request #871 from arthurl/arthur/PR/refences-header-bug

mu4e: [FIX] references header dropped bug
This commit is contained in:
Dirk-Jan C. Binnema 2016-07-03 10:17:04 +03:00 committed by GitHub
commit 6a42000997
1 changed files with 2 additions and 2 deletions

View File

@ -141,8 +141,8 @@ References. If both are empty, return nil."
;; remove some refs when there are too many
(when (> refnum mu4e~max-reference-num)
(let ((surplus (- refnum mu4e~max-reference-num)))
(mu4e~shorten-1 refs cut surplus))
(mapconcat (lambda (id) (format "<%s>" id)) refs " "))))
(mu4e~shorten-1 refs cut surplus)))
(mapconcat (lambda (id) (format "<%s>" id)) refs " ")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;