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.

Other relevant functions are documented in the buffer group.

View in manual

Shortdoc

;; buffer
(bobp)
    => nil

Source Code

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