From 8d52c3f7200582d4711ef0a189a535892ce9d652 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 15 Feb 2020 15:05:30 -0700 Subject: mailscripts.el: don't always pass --reroll-count Signed-off-by: Sean Whitton --- mailscripts.el | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'mailscripts.el') diff --git a/mailscripts.el b/mailscripts.el index 3d65006..fd60222 100644 --- a/mailscripts.el +++ b/mailscripts.el @@ -67,7 +67,7 @@ See notmuch-extract-patch(1) manpage for limitations: in particular, this Emacs Lisp function supports passing only entire threads to the notmuch-extract-patch(1) command." (interactive - "Dgit repo: \nsbranch name (or leave blank to apply to current HEAD): \np") + "Dgit repo: \nsbranch name (or leave blank to apply to current HEAD): \nP") (let ((thread-id ;; If `notmuch-show' was called with a notmuch query rather ;; than a thread ID, as `org-notmuch-follow-link' in @@ -82,9 +82,12 @@ threads to the notmuch-extract-patch(1) command." (default-directory (expand-file-name repo))) (mailscripts--check-out-branch branch) (shell-command - (format "notmuch-extract-patch -v%d %s | git am" - (if reroll-count reroll-count 1) - (shell-quote-argument thread-id)) + (if reroll-count + (format "notmuch-extract-patch -v%d %s | git am" + (prefix-numeric-value reroll-count) + (shell-quote-argument thread-id)) + (format "notmuch-extract-patch %s | git am" + (shell-quote-argument thread-id))) "*notmuch-apply-thread-series*"))) ;;;###autoload @@ -92,7 +95,9 @@ threads to the notmuch-extract-patch(1) command." "Like `notmuch-extract-thread-patches', but use projectile to choose the repo." (interactive) (mailscripts--projectile-repo-and-branch - 'notmuch-extract-thread-patches (prefix-numeric-value current-prefix-arg))) + 'notmuch-extract-thread-patches + (when current-prefix-arg + (prefix-numeric-value current-prefix-arg)))) ;;;###autoload (defun notmuch-extract-message-patches (repo branch) -- cgit v1.2.3