Skip to content

Commit

Permalink
mu4e-compose: use seq-filter instead of seq-keep
Browse files Browse the repository at this point in the history
seq-keep is only arrived with emacs 29, and seq-filter does the job
  • Loading branch information
djcb committed Nov 1, 2023
1 parent 9f39d78 commit 5b29ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mu4e/mu4e-compose.el
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit 5b29ad8

Please sign in to comment.