Function: cvs-set-branch-prefix

cvs-set-branch-prefix is an interactive and byte-compiled function defined in pcvs.el.gz.

Signature

(cvs-set-branch-prefix ARG)

Documentation

Set the branch prefix to take action at the next command.

See cvs-prefix-set for a further the description of the behavior. C-u (universal-argument) 1 selects the vendor branch and C-u (universal-argument) 2 selects the HEAD.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun cvs-set-branch-prefix (arg)
  "Set the branch prefix to take action at the next command.
See `cvs-prefix-set' for a further the description of the behavior.
\\[universal-argument] 1 selects the vendor branch
and \\[universal-argument] 2 selects the HEAD."
  (interactive "P")
  (cvs-mode!)
  (cvs-prefix-set 'cvs-branch-prefix arg))