mu4e: [FIX] references header dropped bug

This commit is contained in:
Arthur Lee 2016-06-22 01:43:59 +08:00
parent 52b7aae439
commit 8a62bc172d
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 " ")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;