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.

Other relevant functions are documented in the buffer group.

View in manual

Shortdoc

;; buffer
(eobp)
    => t

Source Code

// Defined in /usr/src/emacs/src/editfns.c
{
  if (PT == ZV)
    return Qt;
  return Qnil;
}