diff options
| author | Richard M. Stallman | 2001-10-19 19:09:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-10-19 19:09:32 +0000 |
| commit | 1977bbf4a9456a1eb12643272f94d71c12007352 (patch) | |
| tree | a695d89a1e173551eb58301590f55e4022850d39 | |
| parent | c591537064ced321e2e92f460fa44437af0c840d (diff) | |
| download | emacs-1977bbf4a9456a1eb12643272f94d71c12007352.tar.gz emacs-1977bbf4a9456a1eb12643272f94d71c12007352.zip | |
Minor cleanup.
| -rw-r--r-- | lispref/positions.texi | 20 |
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 | |||
| 327 | argument @var{count} not @code{nil} or 1, it moves forward | 327 | argument @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 | ||
| 330 | This command does not move point across a field boundary | 330 | This 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 |
| 332 | different line; if @var{count} is @code{nil} or 1, and point starts at | 332 | different line; therefore, if @var{count} is @code{nil} or 1, and |
| 333 | a field boundary, point does not move. To ignore field boundaries, | 333 | point starts at a field boundary, point does not move. To ignore |
| 334 | either bind @code{inhibit-field-text-motion} to @code{t}, or use the | 334 | field 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 | 336 | instance, @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 | ||
| 339 | If this function reaches the end of the buffer (or of the accessible | 339 | 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 | |||
| 352 | argument @var{count} not @code{nil} or 1, it moves forward | 352 | argument @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 | ||
| 355 | This command does not move point across a field boundary | 355 | This 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 |
| 357 | different line; if @var{count} is @code{nil} or 1, and point starts at | 357 | different line; therefore, if @var{count} is @code{nil} or 1, and |
| 358 | a field boundary, point does not move. To ignore field boundaries, | 358 | point starts at a field boundary, point does not move. To ignore |
| 359 | bind @code{inhibit-field-text-motion} to @code{t}. | 359 | field boundaries, bind @code{inhibit-field-text-motion} to @code{t}. |
| 360 | 360 | ||
| 361 | If this function reaches the end of the buffer (or of the accessible | 361 | If this function reaches the end of the buffer (or of the accessible |
| 362 | portion, if narrowing is in effect), it positions point there. No error | 362 | portion, if narrowing is in effect), it positions point there. No error |