Function: magit-section-show-children-1

magit-section-show-children-1 is a byte-compiled function defined in magit-section.el.

Signature

(magit-section-show-children-1 SECTION &optional DEPTH)

Source Code

;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section-show-children-1 (section &optional depth)
  (dolist (child (oref section children))
    (oset child hidden nil)
    (if depth
        (if (> depth 0)
            (magit-section-show-children-1 child (1- depth))
          (magit-section-hide child))
      (magit-section-show-children-1 child))))