Merge pull request #2602 from progfolio/fix/mu4e-compose-reply

mu4e-compose-reply: account for nil REPLY-TYPE in assertion
This commit is contained in:
Dirk-Jan C. Binnema 2023-11-22 23:21:50 +02:00 committed by GitHub
commit dcd3fbb41a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ of message."
"Reply to the message at point with REPLY-TYPE.
REPLY-TYPE is either nil (normal reply), \='wide or \='supersede."
(interactive)
(cl-assert (when reply-type (member reply-type '(wide supersede))))
(cl-assert (member reply-type '(wide supersede nil)))
(mu4e--compose-setup
'reply
(lambda (parent)