Function: log-edit-insert-message-template

log-edit-insert-message-template is an interactive and byte-compiled function defined in log-edit.el.gz.

Signature

(log-edit-insert-message-template)

Documentation

Insert the default VC commit log template with Summary and Author.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-insert-message-template ()
  "Insert the default VC commit log template with Summary and Author."
  (interactive)
  (when (or (called-interactively-p 'interactive)
            (log-edit-empty-buffer-p))
    (insert "Summary: ")
    (when log-edit-setup-add-author
      (insert "\nAuthor: "))
    (insert "\n\n")
    (message-position-point)))