Function: log-edit-kill-buffer

log-edit-kill-buffer is an interactive and byte-compiled function defined in log-edit.el.gz.

Signature

(log-edit-kill-buffer)

Documentation

Kill the current VC commit log buffer.

This command saves the contents of the log buffer in the VC commit comment history, see log-edit-comment-ring, and hides log-edit-files-buf.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-kill-buffer ()
  "Kill the current VC commit log buffer.
This command saves the contents of the log buffer in the VC commit
comment history, see `log-edit-comment-ring', and hides `log-edit-files-buf'."
  (interactive)
  (log-edit-hide-buf)
  (let ((buf (current-buffer)))
    (quit-windows-on buf)
    (kill-buffer buf)))