Function: vc-sccs-create-tag
vc-sccs-create-tag is a byte-compiled function defined in
vc-sccs.el.gz.
Signature
(vc-sccs-create-tag DIR NAME BRANCHP)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-sccs.el.gz
(defun vc-sccs-create-tag (dir name branchp)
(when branchp
(error "SCCS backend does not support module branches"))
(let ((result (vc-tag-precondition dir)))
(if (stringp result)
(error "File %s is not up-to-date" result)
(vc-file-tree-walk
dir
(lambda (f)
(vc-sccs-add-triple name f (vc-working-revision f)))))))