summaryrefslogtreecommitdiff
path: root/lisp/vc-svn.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-02-22 07:44:08 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-02-22 07:44:08 +0000
commit8184810451398aeeecc73b8de256e522c32e6975 (patch)
treec18d70db0628088c26318731b22c726a09e8c257 /lisp/vc-svn.el
parent9fd63af5b390b45c232248818c610d4f561fc1ac (diff)
downloademacs-8184810451398aeeecc73b8de256e522c32e6975.tar.gz
* vc.el (vc-exec-after): Move setting mode-line-process in the
busy case ... (vc-set-mode-line-busy-indicator): ... in this new function. (vc-status-refresh): Call vc-set-mode-line-busy-indicator. (vc-update-vc-status-buffer): Reset mode-line-process. (vc-status-mark-all-files, vc-status-unmark-all-files): Change to mark/unmark all the files with the same state as the current one. With a prefix argument mark/unmark all files. (vc-status-mode-menu): Adjust strings. (vc-update-vc-status-buffer): Only do something when the argument is not nil. (vc-status-kill-dir-status-process): New function. (vc-status-mode-map): Bind it. (vc-status-process-buffer): New variable. (vc-status-mode): Make it local. (vc-status-refresh): Set it. * vc-hg.el (vc-hg-dir-status): * vc-git.el (vc-git-dir-status): * vc-svn.el (vc-svn-dir-status): Return the buffer in which the command is run.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r--lisp/vc-svn.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 52fb1a515e1..37a5dfb1d3e 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -185,7 +185,8 @@ RESULT is a list of conses (FILE . STATE) for directory DIR."
(generate-new-buffer-name " *vc svn status*"))
(vc-svn-command (current-buffer) 'async nil "status")
(vc-exec-after
- `(vc-svn-after-dir-status (quote ,callback) ,buffer))))
+ `(vc-svn-after-dir-status (quote ,callback) ,buffer))
+ (current-buffer)))
(defun vc-svn-working-revision (file)
"SVN-specific version of `vc-working-revision'."