From de7164a93bcc5830cd7465a1d226da860d1d8231 Mon Sep 17 00:00:00 2001 From: Xinglu Chen Date: Thu, 4 Feb 2021 15:36:46 +0100 Subject: Fix typo This bug was introduced in 26745cb6454cfe8ab5d94359963383e016dfe2c5. * git-email.el (git-email-format-patch): The arguments should be concatenated with " " as a separator. --- git-email.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-email.el') diff --git a/git-email.el b/git-email.el index c728a8f..92de56e 100644 --- a/git-email.el +++ b/git-email.el @@ -329,7 +329,7 @@ With prefix argument KEEP, keep the generated patches. The default behavior is to delete them after sending the message." (interactive (list (apply #'concat (mapcar - (lambda (a) (concat a "")) + (lambda (a) (concat a " ")) (completing-read-multiple "Args: " git-email-format-patch-extra-args nil nil git-email-format-patch-default-args))) -- cgit v1.2.3