Function: cvs-mode-remove
cvs-mode-remove is an interactive and byte-compiled function defined
in pcvs.el.gz.
Signature
(cvs-mode-remove FLAGS)
Documentation
Remove all marked files.
With prefix argument, prompt for cvs flags.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun-cvs-mode (cvs-mode-remove . SIMPLE) (flags)
"Remove all marked files.
With prefix argument, prompt for cvs flags."
(interactive (list (cvs-flags-query 'cvs-remove-flags "cvs remove flags")))
(let ((fis (cvs-do-removal 'remove)))
(if fis (cvs-mode-run "remove" (cons "-f" flags) fis)
(cvs-cleanup-collection cvs-cookies nil nil nil))))