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