diff options
| author | Károly Lőrentey | 2006-01-26 03:40:13 +0000 |
|---|---|---|
| committer | Károly Lőrentey | 2006-01-26 03:40:13 +0000 |
| commit | 13c42cc53a44b65f96e06d600b5c5d59f6757679 (patch) | |
| tree | 43fdc2b21b1b733a7013ffa8bfd6c1d035079525 /src | |
| parent | 2cb3aec40ba29dc8c3d160580405cc2e5a2efdad (diff) | |
| download | emacs-13c42cc53a44b65f96e06d600b5c5d59f6757679.tar.gz emacs-13c42cc53a44b65f96e06d600b5c5d59f6757679.zip | |
(Fbeginning_of_line, Fend_of_line): Clarify confusing doc string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmds.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cmds.c b/src/cmds.c index 71b56e465af..8f7e3bf02df 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -157,10 +157,10 @@ DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 0, 1, "p", | |||
| 157 | With argument N not nil or 1, move forward N - 1 lines first. | 157 | With argument N not nil or 1, move forward N - 1 lines first. |
| 158 | If point reaches the beginning or end of buffer, it stops there. | 158 | If point reaches the beginning or end of buffer, it stops there. |
| 159 | 159 | ||
| 160 | This function does not move point across a field boundary unless that | 160 | This function constrains point to the current field unless this moves |
| 161 | would move point to a different line than the original, unconstrained | 161 | point to a different line than the original, unconstrained result. If |
| 162 | result. If N is nil or 1, and a front-sticky field starts at point, | 162 | N is nil or 1, and a front-sticky field starts at point, the point |
| 163 | the point does not move. To ignore field boundaries bind | 163 | does not move. To ignore field boundaries bind |
| 164 | `inhibit-field-text-motion' to t, or use the `forward-line' function | 164 | `inhibit-field-text-motion' to t, or use the `forward-line' function |
| 165 | instead. For instance, `(forward-line 0)' does the same thing as | 165 | instead. For instance, `(forward-line 0)' does the same thing as |
| 166 | `(beginning-of-line)', except that it ignores field boundaries. */) | 166 | `(beginning-of-line)', except that it ignores field boundaries. */) |
| @@ -183,11 +183,11 @@ With argument N not nil or 1, move forward N - 1 lines first. | |||
| 183 | If point reaches the beginning or end of buffer, it stops there. | 183 | If point reaches the beginning or end of buffer, it stops there. |
| 184 | To ignore intangibility, bind `inhibit-point-motion-hooks' to t. | 184 | To ignore intangibility, bind `inhibit-point-motion-hooks' to t. |
| 185 | 185 | ||
| 186 | This function does not move point across a field boundary unless that | 186 | This function constrains point to the current field unless this moves |
| 187 | would move point to a different line than the original, unconstrained | 187 | point to a different line than the original, unconstrained result. If |
| 188 | result. If N is nil or 1, and a rear-sticky field ends at point, | 188 | N is nil or 1, and a rear-sticky field ends at point, the point does |
| 189 | the point does not move. To ignore field boundaries bind | 189 | not move. To ignore field boundaries bind `inhibit-field-text-motion' |
| 190 | `inhibit-field-text-motion' to t. */) | 190 | to t. */) |
| 191 | (n) | 191 | (n) |
| 192 | Lisp_Object n; | 192 | Lisp_Object n; |
| 193 | { | 193 | { |