diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2021-07-19 18:00:00 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2021-07-20 13:00:02 +0200 |
| commit | fd5cf61730af2051200f81741fd21e8c54f19164 (patch) | |
| tree | 9427fad75a60bf820998b4aa575881d01a7458af /lisp/magit-bisect.el | |
| parent | bf9cc19a3287f6a3cc5c1836312f0d18b38b6e45 (diff) | |
magit-process-git: New function
Diffstat (limited to 'lisp/magit-bisect.el')
| -rw-r--r-- | lisp/magit-bisect.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/magit-bisect.el b/lisp/magit-bisect.el index fe43029..8efe1af 100644 --- a/lisp/magit-bisect.el +++ b/lisp/magit-bisect.el @@ -199,10 +199,10 @@ bisect run'." ;; Avoid `magit-git-bisect' because it's asynchronous, but the ;; next `git bisect run' call requires the bisect to be started. (magit-with-toplevel - (apply #'magit-process-file magit-git-executable - nil (list :file (magit-git-dir "BISECT_CMD_OUTPUT")) nil - (magit-process-git-arguments - (list "bisect" "start" bad good args))) + (magit-process-git + (list :file (magit-git-dir "BISECT_CMD_OUTPUT")) + (magit-process-git-arguments + (list "bisect" "start" bad good args))) (magit-refresh))) (magit-git-bisect "run" (list shell-file-name shell-command-switch cmdline))) |
