branch: externals/vc-jj
commit 0dba09028da61a9fa296c6c669ecd9fb37a5f1a7
Author: Rudi Schlatte <r...@constantly.at>
Commit: Rudi Schlatte <r...@constantly.at>

    Remove superfluous arguments to split-string-shell-command
    
    These arguments were left in when replacing split-string with
    split-string-shell-command.
---
 vc-jj.el | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/vc-jj.el b/vc-jj.el
index 91f387fb16..1f4f550c98 100644
--- a/vc-jj.el
+++ b/vc-jj.el
@@ -520,8 +520,7 @@ the jj command to run."
                       (read-shell-command
                         (format "jj git fetch command: ")
                         (concat vc-jj-program " git fetch")
-                        'vc-jj-pull-history)
-                      " " t)
+                        'vc-jj-pull-history))
                     `(,vc-jj-program "git" "fetch")))
          (jj-program (car command))
          (args (cdr command))
@@ -542,8 +541,7 @@ the command to run, e.g., the semi-standard \"jj git push 
-c @-\"."
                       (read-shell-command
                         (format "jj git push command: ")
                         (concat vc-jj-program " git push")
-                        'vc-jj-push-history)
-                      " " t)
+                        'vc-jj-push-history))
                     `(,vc-jj-program "git" "push")))
          (jj-program (car command))
          (args (cdr command))

Reply via email to