mu4e-compose: use seq-filter instead of seq-keep

seq-keep is only arrived with emacs 29, and seq-filter does the job
This commit is contained in:
Dirk-Jan C. Binnema 2023-11-01 19:43:01 +02:00
parent 9f39d78a71
commit 5b29ad8b6d
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ PARENT is the \"parent\" message; nil
;; we handle that ourselves below
(let* ((message-newsreader mu4e-user-agent-string)
(message-required-mail-headers
(seq-keep #'identity ;; ensure needed headers are generated.
(seq-filter #'identity ;; ensure needed headers are generated.
`(From Subject Date Message-ID
,(when (eq mu4e-compose-type 'reply) 'In-Reply-To)
;; XXX vvv these two don't work. why not?