Function: vc-svn-create-tag

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

Signature

(vc-svn-create-tag DIR NAME BRANCHP)

Documentation

Assign to DIR's current revision a given NAME.

If BRANCHP is non-nil, the name is created as a branch (and the current workspace is immediately moved to that new branch). NAME is assumed to be a URL.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
;;;
;;; Tag system
;;;

(defun vc-svn-create-tag (dir name branchp)
  "Assign to DIR's current revision a given NAME.
If BRANCHP is non-nil, the name is created as a branch (and the current
workspace is immediately moved to that new branch).
NAME is assumed to be a URL."
  (vc-svn-command nil 0 dir "copy" name)
  (when branchp (vc-svn-retrieve-tag dir name nil)))