summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2001-10-19 19:07:37 +0000
committerRichard M. Stallman <rms@gnu.org>2001-10-19 19:07:37 +0000
commitc86b4fba461e617980ae6eacee0b25deb197b4ff (patch)
tree106c4e751b229bd85e3d3c2babba079e7cfc2c5e
parentff0f1892562b15168200f12a337bd77f4a166861 (diff)
downloademacs-c86b4fba461e617980ae6eacee0b25deb197b4ff.tar.gz
Minor cleanup.
-rw-r--r--lispref/positions.texi20
1 files changed, 10 insertions, 10 deletions
diff --git a/lispref/positions.texi b/lispref/positions.texi
index fe056f7d624..de19dcdef09 100644
--- a/lispref/positions.texi
+++ b/lispref/positions.texi
@@ -327,13 +327,13 @@ This function moves point to the beginning of the current line. With an
argument @var{count} not @code{nil} or 1, it moves forward
@var{count}@minus{}1 lines and then to the beginning of the line.
-This command does not move point across a field boundary
+This function does not move point across a field boundary
(@pxref{Fields}) unless doing so would move beyond there to a
-different line; if @var{count} is @code{nil} or 1, and point starts at
-a field boundary, point does not move. To ignore field boundaries,
-either bind @code{inhibit-field-text-motion} to @code{t}, or use the
-@code{forward-line} function instead. For instance,
-@code{(forward-line 0)} does the same thing as
+different line; therefore, if @var{count} is @code{nil} or 1, and
+point starts at a field boundary, point does not move. To ignore
+field boundaries, either bind @code{inhibit-field-text-motion} to
+@code{t}, or use the @code{forward-line} function instead. For
+instance, @code{(forward-line 0)} does the same thing as
@code{(beginning-of-line)}, except that it ignores field boundaries.
If this function reaches the end of the buffer (or of the accessible
@@ -352,11 +352,11 @@ This function moves point to the end of the current line. With an
argument @var{count} not @code{nil} or 1, it moves forward
@var{count}@minus{}1 lines and then to the end of the line.
-This command does not move point across a field boundary
+This function does not move point across a field boundary
(@pxref{Fields}) unless doing so would move beyond there to a
-different line; if @var{count} is @code{nil} or 1, and point starts at
-a field boundary, point does not move. To ignore field boundaries,
-bind @code{inhibit-field-text-motion} to @code{t}.
+different line; therefore, if @var{count} is @code{nil} or 1, and
+point starts at a field boundary, point does not move. To ignore
+field boundaries, bind @code{inhibit-field-text-motion} to @code{t}.
If this function reaches the end of the buffer (or of the accessible
portion, if narrowing is in effect), it positions point there. No error