Returns t
if the mark points before the first character in a line,
nil otherwise.
Returns t
if the mark points after the last character in a line and
before the newline, nil otherwise.
Return t
of the line which mark points to contains no characters.
Returns t
if line contains only characters with a
Whitespace attribute of 1. See chapter character-attributes for
discussion of character attributes.
These functions test if all the characters preceding or following
mark on the line it is on have a Whitespace attribute of 1
.
Returns t
if mark1 and mark2 point to the same line, or nil
otherwise; That is,
(same-line-p a b) <==> (eq (mark-line a) (mark-line b))
These predicates test the relative ordering of two marks in a piece of
text, that is a mark is mark>
another if it points to a position
after it. If the marks point into different, non-connected pieces of
text, such as different buffers, then it is an error to test their
ordering; for such marks mark=
is always false and mark/=
is
always true.
These predicates test the ordering of line1 and line2. If the lines are in unconnected pieces of text it is an error to test their ordering.
This function returns t
if line1 and line2 are in the same
piece of text, or nil otherwise.