Function: magit--eolp

magit--eolp is a byte-compiled function defined in magit-section.el.

Signature

(magit--eolp POS)

Documentation

Return t if POS is at the end of a line.

This is like moving to POS and then calling eolp.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit--eolp (pos)
  "Return t if POS is at the end of a line.
This is like moving to POS and then calling `eolp'."
  (save-excursion (goto-char pos) (bolp)))