Function: bobp
bobp is a function defined in editfns.c.
Signature
(bobp)
Documentation
Return t if point is at the beginning of the buffer.
If the buffer is narrowed, this means the beginning of the narrowed part.
Source Code
// Defined in /usr/src/emacs/src/editfns.c
{
if (PT == BEGV)
return Qt;
return Qnil;
}