Function: vc-cvs-modify-change-comment

vc-cvs-modify-change-comment is a byte-compiled function defined in vc-cvs.el.gz.

Signature

(vc-cvs-modify-change-comment FILES REV COMMENT)

Documentation

Modify the change comments for FILES on a specified REV.

Will fail unless you have administrative privileges on the repo.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-cvs.el.gz
(defun vc-cvs-modify-change-comment (files rev comment)
  "Modify the change comments for FILES on a specified REV.
Will fail unless you have administrative privileges on the repo."
  (vc-cvs-command nil 0 files "admin" (concat "-m" rev ":" comment)))