Function: magit-revision-insert-related-refs-display-p

magit-revision-insert-related-refs-display-p is a byte-compiled function defined in magit-diff.el.

Signature

(magit-revision-insert-related-refs-display-p SYM)

Documentation

Whether to display related branches of type SYM.

Refer to user option magit-revision-insert-related-refs-display-alist.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
(defun magit-revision-insert-related-refs-display-p (sym)
  "Whether to display related branches of type SYM.
Refer to user option `magit-revision-insert-related-refs-display-alist'."
  (if-let ((elt (assq sym magit-revision-insert-related-refs-display-alist)))
      (cdr elt)
    t))