branch: externals/vc-got
commit 1870c8bd649b60c35cc007a4d13722934f8b80f5
Author: Omar Polo <[email protected]>
Commit: Omar Polo <[email protected]>
add a space when prompting for the push/pull operations
---
vc-got.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vc-got.el b/vc-got.el
index ca39a75..3986a31 100755
--- a/vc-got.el
+++ b/vc-got.el
@@ -590,7 +590,7 @@ If REV is t, checkout from the head."
(when-let (cmd (if prompt
(split-string
(read-shell-command (format "%s %s command: " cmd op)
- (format "%s %s" cmd op))
+ (format "%s %s " cmd op))
" " t)
(list cmd op)))
(apply #'vc-do-async-command buffer default-directory cmd)