Function: cvs-mode-unmark-all-files
cvs-mode-unmark-all-files is an interactive and byte-compiled function
defined in pcvs.el.gz.
Signature
(cvs-mode-unmark-all-files)
Documentation
Unmark all files.
Directories are also unmarked, but that doesn't matter, since they should always be unmarked.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun-cvs-mode cvs-mode-unmark-all-files ()
"Unmark all files.
Directories are also unmarked, but that doesn't matter, since
they should always be unmarked."
(interactive)
(ewoc-map (lambda (cookie)
(setf (cvs-fileinfo->marked cookie) nil)
t)
cvs-cookies))