aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-10-19 19:09:32 +0000
committerRichard M. Stallman2001-10-19 19:09:32 +0000
commit1977bbf4a9456a1eb12643272f94d71c12007352 (patch)
treea695d89a1e173551eb58301590f55e4022850d39
parentc591537064ced321e2e92f460fa44437af0c840d (diff)
downloademacs-1977bbf4a9456a1eb12643272f94d71c12007352.tar.gz
emacs-1977bbf4a9456a1eb12643272f94d71c12007352.zip
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 9fe43316213..14fb7c18a34 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
327argument @var{count} not @code{nil} or 1, it moves forward 327argument @var{count} not @code{nil} or 1, it moves forward
328@var{count}@minus{}1 lines and then to the beginning of the line. 328@var{count}@minus{}1 lines and then to the beginning of the line.
329 329
330This command does not move point across a field boundary 330This function does not move point across a field boundary
331(@pxref{Fields}) unless doing so would move beyond there to a 331(@pxref{Fields}) unless doing so would move beyond there to a
332different line; if @var{count} is @code{nil} or 1, and point starts at 332different line; therefore, if @var{count} is @code{nil} or 1, and
333a field boundary, point does not move. To ignore field boundaries, 333point starts at a field boundary, point does not move. To ignore
334either bind @code{inhibit-field-text-motion} to @code{t}, or use the 334field boundaries, either bind @code{inhibit-field-text-motion} to
335@code{forward-line} function instead. For instance, 335@code{t}, or use the @code{forward-line} function instead. For
336@code{(forward-line 0)} does the same thing as 336instance, @code{(forward-line 0)} does the same thing as
337@code{(beginning-of-line)}, except that it ignores field boundaries. 337@code{(beginning-of-line)}, except that it ignores field boundaries.
338 338
339If this function reaches the end of the buffer (or of the accessible 339If 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
352argument @var{count} not @code{nil} or 1, it moves forward 352argument @var{count} not @code{nil} or 1, it moves forward
353@var{count}@minus{}1 lines and then to the end of the line. 353@var{count}@minus{}1 lines and then to the end of the line.
354 354
355This command does not move point across a field boundary 355This function does not move point across a field boundary
356(@pxref{Fields}) unless doing so would move beyond there to a 356(@pxref{Fields}) unless doing so would move beyond there to a
357different line; if @var{count} is @code{nil} or 1, and point starts at 357different line; therefore, if @var{count} is @code{nil} or 1, and
358a field boundary, point does not move. To ignore field boundaries, 358point starts at a field boundary, point does not move. To ignore
359bind @code{inhibit-field-text-motion} to @code{t}. 359field boundaries, bind @code{inhibit-field-text-motion} to @code{t}.
360 360
361If this function reaches the end of the buffer (or of the accessible 361If this function reaches the end of the buffer (or of the accessible
362portion, if narrowing is in effect), it positions point there. No error 362portion, if narrowing is in effect), it positions point there. No error