Function: vc-file-tree-walk
vc-file-tree-walk is a byte-compiled function defined in vc.el.gz.
Signature
(vc-file-tree-walk DIRNAME FUNC &rest ARGS)
Documentation
Walk recursively through DIRNAME.
Invoke FUNC f ARGS on each VC-managed file f underneath it.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
;; These things should probably be generally available
(defun vc-file-tree-walk (dirname func &rest args)
"Walk recursively through DIRNAME.
Invoke FUNC f ARGS on each VC-managed file f underneath it."
(vc-file-tree-walk-internal (expand-file-name dirname) func args)
(message "Traversing directory %s...done" dirname))