diff options
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmds.c b/src/cmds.c index 1cf7ff24fec..60318225831 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -47,7 +47,7 @@ DEFUN ("forward-point", Fforward_point, Sforward_point, 1, 1, 0, | |||
| 47 | return make_number (PT + XINT (n)); | 47 | return make_number (PT + XINT (n)); |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "^p", | 50 | DEFUE ("forward-char", Fforward_char, Sforward_char, 0, 1, "^p", |
| 51 | doc: /* Move point N characters forward (backward if N is negative). | 51 | doc: /* Move point N characters forward (backward if N is negative). |
| 52 | On reaching end or beginning of buffer, stop and signal error. | 52 | On reaching end or beginning of buffer, stop and signal error. |
| 53 | 53 | ||
| @@ -104,7 +104,7 @@ right or to the left on the screen. This is in contrast with | |||
| 104 | return Fforward_char (n); | 104 | return Fforward_char (n); |
| 105 | } | 105 | } |
| 106 | 106 | ||
| 107 | DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "^p", | 107 | DEFUE ("forward-line", Fforward_line, Sforward_line, 0, 1, "^p", |
| 108 | doc: /* Move N lines forward (backward if N is negative). | 108 | doc: /* Move N lines forward (backward if N is negative). |
| 109 | Precisely, if point is on line I, move to the start of line I + N | 109 | Precisely, if point is on line I, move to the start of line I + N |
| 110 | \("start of line" in the logical order). | 110 | \("start of line" in the logical order). |
| @@ -174,7 +174,7 @@ instead. For instance, `(forward-line 0)' does the same thing as | |||
| 174 | return Qnil; | 174 | return Qnil; |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | DEFUN ("end-of-line", Fend_of_line, Send_of_line, 0, 1, "^p", | 177 | DEFUE ("end-of-line", Fend_of_line, Send_of_line, 0, 1, "^p", |
| 178 | doc: /* Move point to end of current line (in the logical order). | 178 | doc: /* Move point to end of current line (in the logical order). |
| 179 | With argument N not nil or 1, move forward N - 1 lines first. | 179 | With argument N not nil or 1, move forward N - 1 lines first. |
| 180 | If point reaches the beginning or end of buffer, it stops there. | 180 | If point reaches the beginning or end of buffer, it stops there. |