Function: magit-log-select-quit

magit-log-select-quit is an interactive and byte-compiled function defined in magit-log.el.

Signature

(magit-log-select-quit)

Documentation

Abort selecting a commit, don't act on any commit.

Call magit-log-select-quit-function if set.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(defun magit-log-select-quit ()
  "Abort selecting a commit, don't act on any commit.
Call `magit-log-select-quit-function' if set."
  (interactive)
  (let ((fun magit-log-select-quit-function))
    (magit-mode-bury-buffer 'kill)
    (when fun (funcall fun))))