Function: bolp
bolp is a function defined in editfns.c.
Signature
(bolp)
Documentation
Return t if point is at the beginning of a line.
Other relevant functions are documented in the buffer group.
Shortdoc
;; buffer
(bolp)
=> nil
Source Code
// Defined in /usr/src/emacs/src/editfns.c
{
if (PT == BEGV || FETCH_BYTE (PT_BYTE - 1) == '\n')
return Qt;
return Qnil;
}