diff options
author | Juri Linkov <juri@linkov.net> | 2023-01-24 20:24:15 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2023-01-24 20:27:07 +0200 |
commit | e31a56239654a74b60e51f20799c8b09522082e4 (patch) | |
tree | c233a791f56f7f2147c2f19428356ac1c7abc4d4 /lisp/vc/vc-bzr.el | |
parent | deee3a92623ef6b2c879b99fd0dfa449ee4f420d (diff) | |
download | emacs-e31a56239654a74b60e51f20799c8b09522082e4.tar.gz emacs-e31a56239654a74b60e51f20799c8b09522082e4.tar.bz2 emacs-e31a56239654a74b60e51f20799c8b09522082e4.zip |
* lisp/vc/vc-bzr.el (vc-bzr--pushpull): Return buffer's process.
* lisp/vc/vc-git.el (vc-git--pushpull): Add comment.
* lisp/vc/vc.el (vc-pull-and-push): Expand docstring about
prerequisites for backend to support this command (bug#60569).
Diffstat (limited to 'lisp/vc/vc-bzr.el')
-rw-r--r-- | lisp/vc/vc-bzr.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el index 6443f6d57aa..f66e37fffa4 100644 --- a/lisp/vc/vc-bzr.el +++ b/lisp/vc/vc-bzr.el @@ -381,7 +381,9 @@ If PROMPT is non-nil, prompt for the Bzr command to run." (setq-local compile-command (concat vc-bzr-program " " command " " (if args (mapconcat #'identity args " ") ""))))) - (vc-set-async-update buf)))) + (vc-set-async-update buf) + ;; Return the process for `vc-pull-and-push' + (get-buffer-process buf)))) (defun vc-bzr-pull (prompt) "Pull changes into the current Bzr branch. |