Function: cvs-mode-update

cvs-mode-update is an interactive and byte-compiled function defined in pcvs.el.gz.

Signature

(cvs-mode-update)

Documentation

Update all marked files.

With a 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-update . NOARGS) (flags)
  "Update all marked files.
With a prefix argument, prompt for cvs flags."
  (interactive
   (list (cvs-add-branch-prefix
	  (cvs-add-secondary-branch-prefix
	   (cvs-flags-query 'cvs-update-flags "cvs update flags")
	   "-j") "-j")))
  (cvs-mode-do "update" flags 'update))