diff options
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmds.c b/src/cmds.c index 45f7df948ae..453a4b67e57 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -85,6 +85,7 @@ move_point (Lisp_Object n, bool forward) | |||
| 85 | DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "^p", | 85 | DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "^p", |
| 86 | doc: /* Move point N characters forward (backward if N is negative). | 86 | doc: /* Move point N characters forward (backward if N is negative). |
| 87 | On reaching end or beginning of buffer, stop and signal error. | 87 | On reaching end or beginning of buffer, stop and signal error. |
| 88 | Interactively, N is the numeric prefix argument. | ||
| 88 | 89 | ||
| 89 | Depending on the bidirectional context, the movement may be to the | 90 | Depending on the bidirectional context, the movement may be to the |
| 90 | right or to the left on the screen. This is in contrast with | 91 | right or to the left on the screen. This is in contrast with |
| @@ -97,6 +98,7 @@ right or to the left on the screen. This is in contrast with | |||
| 97 | DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "^p", | 98 | DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "^p", |
| 98 | doc: /* Move point N characters backward (forward if N is negative). | 99 | doc: /* Move point N characters backward (forward if N is negative). |
| 99 | On attempt to pass beginning or end of buffer, stop and signal error. | 100 | On attempt to pass beginning or end of buffer, stop and signal error. |
| 101 | Interactively, N is the numeric prefix argument. | ||
| 100 | 102 | ||
| 101 | Depending on the bidirectional context, the movement may be to the | 103 | Depending on the bidirectional context, the movement may be to the |
| 102 | right or to the left on the screen. This is in contrast with | 104 | right or to the left on the screen. This is in contrast with |