Function: cvs-do-edit-log
cvs-do-edit-log is an interactive and byte-compiled function defined
in pcvs.el.gz.
Signature
(cvs-do-edit-log REV)
Documentation
Do the actual commit, using the current buffer as the log message.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun cvs-do-edit-log (rev)
"Do the actual commit, using the current buffer as the log message."
(interactive (list cvs-edit-log-revision))
(let ((msg (buffer-substring-no-properties (point-min) (point-max))))
(cvs-mode!
(lambda ()
(cvs-mode-do "admin" (list (concat "-m" rev ":" msg)) nil)))))