1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-06 14:22:31 -07:00

; * lisp/vc/vc.el (dir-status-files): Clarifications (bug#80722).

This commit is contained in:
Sean Whitton 2026-04-06 12:16:56 +01:00
parent 5003f5e6e4
commit 02ad0183f2

View file

@ -157,12 +157,15 @@
;; - dir-status-files (dir files update-function)
;;
;; Produce RESULT: a list of lists of the form (FILE VC-STATE EXTRA)
;; for FILES in DIR. If FILES is nil, report on all files in DIR.
;; (It is OK, though possibly inefficient, to ignore the FILES argument
;; and always report on all files in DIR.)
;; for FILES in DIR (which need not be the repository root).
;; If FILES is nil, report on all files in DIR.
;; (It is permitted, though possibly inefficient, to ignore the FILES
;; argument and always report on all files in DIR.)
;;
;; If FILES is non-nil, this function should report on all requested
;; files, including up-to-date or ignored files.
;; If FILES is nil, up-to-date and ignored files may be excluded, but
;; need not be.
;;
;; EXTRA can be used for backend specific information about FILE.
;;