diff options
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/cmds.c b/src/cmds.c index cc5bd90cca7..8f7e3bf02df 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -157,13 +157,13 @@ 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 command does not move point across a field boundary unless doing so | 160 | This function constrains point to the current field unless this moves |
| 161 | would move beyond there to a different line; If N is nil or 1, and point | 161 | point to a different line than the original, unconstrained result. If |
| 162 | starts at a field boundary, point does not move. To ignore field | 162 | N is nil or 1, and a front-sticky field starts at point, the point |
| 163 | boundaries, either bind `inhibit-field-text-motion' to t, or use the | 163 | does not move. To ignore field boundaries bind |
| 164 | `forward-line' function instead. For instance, `(forward-line 0)' does | 164 | `inhibit-field-text-motion' to t, or use the `forward-line' function |
| 165 | the same thing as `(beginning-of-line)', except that it ignores field | 165 | instead. For instance, `(forward-line 0)' does the same thing as |
| 166 | boundaries. */) | 166 | `(beginning-of-line)', except that it ignores field boundaries. */) |
| 167 | (n) | 167 | (n) |
| 168 | Lisp_Object n; | 168 | Lisp_Object n; |
| 169 | { | 169 | { |
| @@ -183,10 +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 command does not move point across a field boundary unless doing so | 186 | This function constrains point to the current field unless this moves |
| 187 | would move beyond there to a different line; if N is nil or 1, and | 187 | point to a different line than the original, unconstrained result. If |
| 188 | point starts at a field boundary, point does not move. To ignore field | 188 | N is nil or 1, and a rear-sticky field ends at point, the point does |
| 189 | boundaries bind `inhibit-field-text-motion' to t. */) | 189 | not move. To ignore field boundaries bind `inhibit-field-text-motion' |
| 190 | to t. */) | ||
| 190 | (n) | 191 | (n) |
| 191 | Lisp_Object n; | 192 | Lisp_Object n; |
| 192 | { | 193 | { |