summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-01-05 16:00:09 +0000
committerRichard M. Stallman <rms@gnu.org>2006-01-05 16:00:09 +0000
commitbf2c10895e031d1938faa4f541a9c734a65b3ea5 (patch)
tree9444fa89a38447b5212c9ace0e7dbe4fd7e43907
parentf00239cf2670344ce2755ef7a24fa1d860babe24 (diff)
downloademacs-bf2c10895e031d1938faa4f541a9c734a65b3ea5.tar.gz
(The Mark): Fix in `mark'.
-rw-r--r--lispref/markers.texi15
1 files changed, 8 insertions, 7 deletions
diff --git a/lispref/markers.texi b/lispref/markers.texi
index d9f6d19a4b0..ab16afc3ac4 100644
--- a/lispref/markers.texi
+++ b/lispref/markers.texi
@@ -441,13 +441,14 @@ programming. So we do not describe it here.
@defun mark &optional force
@cindex current buffer mark
-This function returns the current buffer's mark position as an integer.
-
-If Transient Mark mode is enabled, @code{mark-even-if-inactive} is
-@code{nil} and the mark is inactive, @code{mark} normally signals
-an error. However, if @var{force} is non-@code{nil}, then @code{mark}
-returns the mark position anyway---or @code{nil}, if the mark is not
-yet set for this buffer.
+This function returns the current buffer's mark position as an integer,
+or @code{nil} if no mark has ever been set in this buffer.
+
+If Transient Mark mode is enabled, and @code{mark-even-if-inactive} is
+@code{nil}, @code{mark} signals an error if the mark is inactive.
+However, if @var{force} is non-@code{nil}, then @code{mark} disregards
+inactivity of the mark, and returns the mark position anyway (or
+@code{nil}).
@end defun
@defun mark-marker