Function: cvs-mode-toggle-marks
cvs-mode-toggle-marks is an interactive and byte-compiled function
defined in pcvs.el.gz.
Signature
(cvs-mode-toggle-marks ARG)
Documentation
Toggle whether the next CVS command uses marks.
See cvs-prefix-set for further description of the behavior.
C-u (universal-argument) 1 selects force-marks,
C-u (universal-argument) 2 selects ignore-marks,
C-u (universal-argument) 3 selects toggle-marks.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun-cvs-mode cvs-mode-toggle-marks (arg)
"Toggle whether the next CVS command uses marks.
See `cvs-prefix-set' for further description of the behavior.
\\[universal-argument] 1 selects `force-marks',
\\[universal-argument] 2 selects `ignore-marks',
\\[universal-argument] 3 selects `toggle-marks'."
(interactive "P")
(cvs-prefix-set 'cvs-ignore-marks-modif arg))