branch: externals/vc-jj commit 1fb0c5651fb54c2176081fbb81b155a6cee64a6d Author: Rudi Schlatte <r...@constantly.at> Commit: Rudi Schlatte <r...@constantly.at>
Use split-string-shell-command Raise the minimum Emacs version we support to 28.1 until the compat library adds this function. --- vc-jj.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vc-jj.el b/vc-jj.el index 5ec1138d9c..dc45932a98 100644 --- a/vc-jj.el +++ b/vc-jj.el @@ -6,7 +6,7 @@ ;; Rudolf Schlatte <r...@constantly.at> ;; URL: https://codeberg.org/emacs-jj-vc/vc-jj.el ;; Version: 0.1 -;; Package-Requires: ((emacs "25.1") (compat "29.4")) +;; Package-Requires: ((emacs "28.1") (compat "29.4")) ;; Keywords: vc tools ;; This program is free software; you can redistribute it and/or modify @@ -483,7 +483,7 @@ four groups: change id, author, datetime, line number.") Normally, this runs \"jj git fetch\". If PROMPT is non-nil, prompt for the jj command to run." (let* ((command (if prompt - (split-string + (split-string-shell-command (read-shell-command (format "jj git fetch command: ") (concat vc-jj-program " git fetch") @@ -505,7 +505,7 @@ the jj command to run." Normally, this runs \"jj git push\". If PROMPT is non-nil, prompt for the command to run, e.g., the semi-standard \"jj git push -c @-\"." (let* ((command (if prompt - (split-string + (split-string-shell-command (read-shell-command (format "jj git push command: ") (concat vc-jj-program " git push")