Function: magit-wash-sequence
magit-wash-sequence is a byte-compiled function defined in
magit-section.el.
Signature
(magit-wash-sequence FUNCTION)
Documentation
Repeatedly call FUNCTION until it returns nil or eob is reached.
FUNCTION has to move point forward or return nil.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-wash-sequence (function)
"Repeatedly call FUNCTION until it returns nil or eob is reached.
FUNCTION has to move point forward or return nil."
(while (and (not (eobp)) (funcall function))))