Function: vc-sccs-checkin
vc-sccs-checkin is a byte-compiled function defined in vc-sccs.el.gz.
Signature
(vc-sccs-checkin FILES COMMENT &optional REV)
Documentation
SCCS-specific version of vc-backend-checkin.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-sccs.el.gz
(defun vc-sccs-checkin (files comment &optional rev)
"SCCS-specific version of `vc-backend-checkin'."
(dolist (file (vc-expand-dirs files 'SCCS))
(apply #'vc-sccs-do-command nil 0 "delta" (vc-master-name file)
(if rev (concat "-r" rev))
(concat "-y" comment)
(vc-switches 'SCCS 'checkin))
(vc-sccs-do-command nil 0 "get" (vc-master-name file))))