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