diff options
| author | Dan Nicolaescu | 2008-02-19 15:44:45 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-02-19 15:44:45 +0000 |
| commit | 00ca5ce2ea0ac589121f0ee0f2d3f601c6cf1fb7 (patch) | |
| tree | cd8e750dcef44402cdeecc056720b0b7826b5929 /lisp | |
| parent | 6d587cb5d90c3545be3a5aba7d5479914a609064 (diff) | |
| download | emacs-00ca5ce2ea0ac589121f0ee0f2d3f601c6cf1fb7.tar.gz emacs-00ca5ce2ea0ac589121f0ee0f2d3f601c6cf1fb7.zip | |
(dir-status): Add a brief description.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc.el | 13 |
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 @@ | |||
| 1 | 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * vc.el (dir-status): Add a brief description. | ||
| 4 | |||
| 1 | 2008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org> | 5 | 2008-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 |