Function: magit-section-goto-successor--same
magit-section-goto-successor--same is a byte-compiled function defined
in magit-section.el.
Signature
(magit-section-goto-successor--same SECTION LINE CHAR)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section-goto-successor--same (section line char)
(let ((ident (magit-section-ident section)))
(and-let ((found (magit-get-section ident)))
(let ((start (oref found start)))
(goto-char start)
(unless (eq found magit-root-section)
(ignore-errors
(forward-line line)
(forward-char char))
(unless (eq (magit-current-section) found)
(goto-char start)))
t))))