Function: vc-sccs-modify-change-comment
vc-sccs-modify-change-comment is a byte-compiled function defined in
vc-sccs.el.gz.
Signature
(vc-sccs-modify-change-comment FILES REV COMMENT)
Documentation
Modify (actually, append to) the change comments for FILES on a specified REV.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-sccs.el.gz
(defun vc-sccs-modify-change-comment (files rev comment)
"Modify (actually, append to) the change comments for FILES on a specified REV."
(dolist (file (vc-expand-dirs files 'SCCS))
(vc-sccs-do-command nil 0 "cdc" (vc-master-name file)
(concat "-y" comment) (concat "-r" rev))))