Function: point-marker

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

Signature

(point-marker)

Documentation

Return value of point, as a marker object.

Probably introduced at or before Emacs version 17.

Source Code

// Defined in /usr/src/emacs/src/editfns.c
{
  return build_marker (current_buffer, PT, PT_BYTE);
}