Function
editor:current-point
Function
editor:current-mark &optional pop-p no-error-p
t, the mark is popped off the point ring. If no mark is set and no-error-p ist,nil is returned; otherwise an error is signalled. The default for both of these optional arguments isnil. Function
editor:set-current-mark point
Function
editor:buffer-point buffer
Function
editor:point< point1 point2
nil if point1 is before point2 in the buffer. Function
editor:point> point1 point2
nil if point1 is after point2 in the buffer. Function
editor:copy-point point &optional kind new-point
:before,:after, or :temporary. If new-point is supplied, the copied point is bound to that as well as being returned. Function
editor:move-point point new-position
Function
editor:start-line-p point
t if the current point is immediately before the first character in a line, andnil otherwise. Function
editor:end-line-p point
t if the current point is immediately after the last character in a line, andnil otherwise. Function
editor:same-line-p point1 point2
t if point1 and point2 are on the same line, andnil otherwise. Macro
editor:save-excursion &rest body