summaryrefslogtreecommitdiff
path: root/lisp/vc-git.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
commit751c9f0042f71142f727c53008faf1a8ea80822b (patch)
tree0e9078776fc03b0a858773b4cf40ef183ddf9142 /lisp/vc-git.el
parent4dd7de9aafca38477a68c735065fb7018411d139 (diff)
downloademacs-751c9f0042f71142f727c53008faf1a8ea80822b.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-git.el')
-rw-r--r--lisp/vc-git.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index c8c63a22181..c2295ddaddc 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -252,7 +252,8 @@
"--directory"
"--exclude-per-directory=.gitignore")
(vc-exec-after
- `(vc-git-after-dir-status (quote ,update-function) ,status-buffer))))
+ `(vc-git-after-dir-status (quote ,update-function) ,status-buffer))
+ (current-buffer)))
;;; STATE-CHANGING FUNCTIONS