Function: region-beginning

region-beginning is a function defined in editfns.c.

Signature

(region-beginning)

Documentation

Return the integer value of point or mark, whichever is smaller.

Probably introduced at or before Emacs version 26.1.

Source Code

// Defined in /usr/src/emacs/src/editfns.c
{
  return region_limit (1);
}