Function: vc-rcs-modify-change-comment
vc-rcs-modify-change-comment is a byte-compiled function defined in
vc-rcs.el.gz.
Signature
(vc-rcs-modify-change-comment FILES REV COMMENT)
Documentation
Modify the change comments change on FILES on a specified REV.
If FILE is a directory the operation is applied to all registered files beneath it.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
(defun vc-rcs-modify-change-comment (files rev comment)
"Modify the change comments change on FILES on a specified REV.
If FILE is a directory the operation is applied to all registered
files beneath it."
(dolist (file (vc-expand-dirs files 'RCS))
(vc-do-command "*vc*" 0 "rcs" (vc-master-name file)
(concat "-m" rev ":" comment))))