Function: cvs-mode-force-command
cvs-mode-force-command is an interactive and byte-compiled function
defined in pcvs.el.gz.
Signature
(cvs-mode-force-command ARG)
Documentation
Force the next cvs command to operate on all the selected files.
By default, cvs commands only operate on files on which the command
"makes sense". This overrides the safety feature on the next cvs command.
It actually behaves as a toggle. If prefixed by C-u (universal-argument) C-u (universal-argument),
the override will persist until the next toggle.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun-cvs-mode cvs-mode-force-command (arg)
"Force the next cvs command to operate on all the selected files.
By default, cvs commands only operate on files on which the command
\"makes sense\". This overrides the safety feature on the next cvs command.
It actually behaves as a toggle. If prefixed by \\[universal-argument] \\[universal-argument],
the override will persist until the next toggle."
(interactive "P")
(cvs-prefix-set 'cvs-force-command arg))