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