Function: point-min

point-min is a function defined in editfns.c.

Signature

(point-min)

Documentation

Return the minimum permissible value of point in the current buffer.

This is 1, unless narrowing (a buffer restriction) is in effect.

Other relevant functions are documented in the buffer group.

View in manual

Probably introduced at or before Emacs version 17.

Shortdoc

;; buffer
(point-min)
    => 1

Source Code

// Defined in /usr/src/emacs/src/editfns.c
{
  Lisp_Object temp;
  XSETFASTINT (temp, BEGV);
  return temp;
}