diff options
author | Xinglu Chen <public@yoctocell.xyz> | 2021-02-04 15:36:46 +0100 |
---|---|---|
committer | Xinglu Chen <public@yoctocell.xyz> | 2021-02-04 15:36:46 +0100 |
commit | de7164a93bcc5830cd7465a1d226da860d1d8231 (patch) | |
tree | 3e1c37a14d13be4decee871f93d3d5329b111311 | |
parent | 4c6bf529a52c5d98412e45a03c8499530a34f965 (diff) |
Fix typo
This bug was introduced in 26745cb6454cfe8ab5d94359963383e016dfe2c5.
* git-email.el (git-email-format-patch): The arguments should be
concatenated with " " as a separator.
-rw-r--r-- | git-email.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |