Function: magit-log-maybe-update-blob-buffer

magit-log-maybe-update-blob-buffer is a byte-compiled function defined in magit-log.el.

Signature

(magit-log-maybe-update-blob-buffer &optional _)

Documentation

When moving in a log or cherry buffer, update the blob buffer.

If there is no blob buffer in the same frame, then do nothing. See also info node (magit)Section Movement.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(defun magit-log-maybe-update-blob-buffer (&optional _)
  "When moving in a log or cherry buffer, update the blob buffer.
If there is no blob buffer in the same frame, then do nothing.
See also info node `(magit)Section Movement'."
  (when (derived-mode-p 'magit-log-mode 'magit-cherry-mode 'magit-reflog-mode)
    (magit--maybe-update-blob-buffer)))