Function: vc-svn-retrieve-tag

vc-svn-retrieve-tag is a byte-compiled function defined in vc-svn.el.gz.

Signature

(vc-svn-retrieve-tag DIR NAME UPDATE)

Documentation

Retrieve a tag at and below DIR.

NAME is the name of the tag; if it is empty, do a svn update. If UPDATE is non-nil, then update (resynch) any affected buffers. NAME is assumed to be a URL.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
(defun vc-svn-retrieve-tag (dir name _update)
  "Retrieve a tag at and below DIR.
NAME is the name of the tag; if it is empty, do a `svn update'.
If UPDATE is non-nil, then update (resynch) any affected buffers.
NAME is assumed to be a URL."
  (vc-svn-command nil 0 dir "switch" name)
  ;; FIXME: parse the output and obey `update'.
  )