Function: point-max-marker

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

Signature

(point-max-marker)

Documentation

Return a marker to the maximum permissible value of point in this buffer.

This is (1+ (buffer-size)), unless narrowing (a buffer restriction) is in effect, in which case it is less.

View in manual

Probably introduced at or before Emacs version 17.

Source Code

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