Go to the first, previous, next, last section, table of contents.


Marks

A mark is a Lisp object which points to a character in a file (or buffer), as the buffer the file is stored in is modified the position the mark points to is also modified so that the mark will always point to the same character.

The character that a mark points to does not have to be loaded into the editor all the time either; if the file the character is in is not resident in a buffer the mark will simply contain the character's position and the file's name. When a file is loaded any marks pointing to the file are altered so that they point straight to the buffer containing the file.

Function: markp object
This function returns t if its argument is a mark.


Go to the first, previous, next, last section, table of contents.