Function: log-edit-add-to-changelog

log-edit-add-to-changelog is an interactive and byte-compiled function defined in log-edit.el.gz.

Signature

(log-edit-add-to-changelog)

Documentation

Insert this VC commit log message into the appropriate ChangeLog file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-add-to-changelog ()
  "Insert this VC commit log message into the appropriate ChangeLog file."
  (interactive)
  (log-edit-remember-comment)
  (dolist (f (log-edit-files))
    (let ((buffer-file-name (expand-file-name f)))
      (save-excursion
	(log-edit-comment-to-change-log)))))