Function: magit--eol-position
magit--eol-position is a byte-compiled function defined in
magit-section.el.
Signature
(magit--eol-position POS)
Documentation
Return the position at the end of the line containing POS.
This is like moving to POS and then calling pos-eol.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit--eol-position (pos)
"Return the position at the end of the line containing POS.
This is like moving to POS and then calling `pos-eol'."
(save-excursion (goto-char pos) (pos-eol)))