aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc.el13
2 files changed, 17 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cc1c4462914..69fe9bca1f3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc.el (dir-status): Add a brief description.
4
12008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org> 52008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org>
2 6
3 * vc-hooks.el (vc-find-root): Take optional arg INVERT. 7 * vc-hooks.el (vc-find-root): Take optional arg INVERT.
diff --git a/lisp/vc.el b/lisp/vc.el
index cc9f89dd109..3376113711a 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -167,6 +167,19 @@
167;; in older versions this method was not required to recurse into 167;; in older versions this method was not required to recurse into
168;; subdirectories.) 168;; subdirectories.)
169;; 169;;
170;; - dir-status (dir update-function status-buffer)
171;;
172;; Produce RESULT: a list of conses of the form (file . vc-state)
173;; for the files in DIR. If a command needs to be run to compute
174;; this list, it should be run asynchronously. When RESULT is
175;; computed, it should be passed back by doing:
176;; (funcall UPDATE-FUNCTION RESULT STATUS-BUFFER)
177;; This function is used by vc-status, a replacement for vc-dired.
178;; vc-status is still under development, and is NOT feature
179;; complete. As such, the requirements for this function might
180;; change.
181;; This is a replacement for dir-state.
182;;
170;; * working-revision (file) 183;; * working-revision (file)
171;; 184;;
172;; Return the working revision of FILE. This is the revision fetched 185;; Return the working revision of FILE. This is the revision fetched