Skip to content

Commit

Permalink
Merge pull request #2602 from progfolio/fix/mu4e-compose-reply
Browse files Browse the repository at this point in the history
mu4e-compose-reply: account for nil REPLY-TYPE in assertion
  • Loading branch information
djcb authored Nov 22, 2023
2 parents fa0248a + 4ab0ae5 commit dcd3fbb
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 @@ -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)
Expand Down

0 comments on commit dcd3fbb

Please sign in to comment.