Function: magit-section-content-p
magit-section-content-p is a byte-compiled function defined in
magit-section.el.
Signature
(magit-section-content-p SECTION)
Documentation
Return non-nil if SECTION has content or an unused washer function.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section-content-p (section)
"Return non-nil if SECTION has content or an unused washer function."
(with-slots (content end washer) section
(and content (or (not (= content end)) washer))))