diff options
| author | Sean Whitton | 2026-04-06 12:16:56 +0100 |
|---|---|---|
| committer | Sean Whitton | 2026-04-06 12:16:56 +0100 |
| commit | 02ad0183f2e078b5fda8a67c209ba280db9b2123 (patch) | |
| tree | 25d129776e1d50e24b656536d1ed23ac3208aa15 | |
| parent | 5003f5e6e48bc4a2050b74f85ed19b366237b427 (diff) | |
| download | emacs-02ad0183f2e078b5fda8a67c209ba280db9b2123.tar.gz emacs-02ad0183f2e078b5fda8a67c209ba280db9b2123.zip | |
; * lisp/vc/vc.el (dir-status-files): Clarifications (bug#80722).
| -rw-r--r-- | lisp/vc/vc.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 3e4382ded7d..2ab6635e943 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el | |||
| @@ -157,12 +157,15 @@ | |||
| 157 | ;; - dir-status-files (dir files update-function) | 157 | ;; - dir-status-files (dir files update-function) |
| 158 | ;; | 158 | ;; |
| 159 | ;; Produce RESULT: a list of lists of the form (FILE VC-STATE EXTRA) | 159 | ;; Produce RESULT: a list of lists of the form (FILE VC-STATE EXTRA) |
| 160 | ;; for FILES in DIR. If FILES is nil, report on all files in DIR. | 160 | ;; for FILES in DIR (which need not be the repository root). |
| 161 | ;; (It is OK, though possibly inefficient, to ignore the FILES argument | 161 | ;; If FILES is nil, report on all files in DIR. |
| 162 | ;; and always report on all files in DIR.) | 162 | ;; (It is permitted, though possibly inefficient, to ignore the FILES |
| 163 | ;; argument and always report on all files in DIR.) | ||
| 163 | ;; | 164 | ;; |
| 164 | ;; If FILES is non-nil, this function should report on all requested | 165 | ;; If FILES is non-nil, this function should report on all requested |
| 165 | ;; files, including up-to-date or ignored files. | 166 | ;; files, including up-to-date or ignored files. |
| 167 | ;; If FILES is nil, up-to-date and ignored files may be excluded, but | ||
| 168 | ;; need not be. | ||
| 166 | ;; | 169 | ;; |
| 167 | ;; EXTRA can be used for backend specific information about FILE. | 170 | ;; EXTRA can be used for backend specific information about FILE. |
| 168 | ;; | 171 | ;; |