diff options
| author | Eli Zaretskii | 2010-08-08 19:43:26 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-08-08 19:43:26 +0300 |
| commit | cd21226da41a652bbf21557307bf7e4904fa1524 (patch) | |
| tree | fe8adf50249fb13db706c1373b5bce9b5c575404 /src/cmds.c | |
| parent | efb41e219b4d568cef324590594e8c6f49ad6e4f (diff) | |
| download | emacs-cd21226da41a652bbf21557307bf7e4904fa1524.tar.gz emacs-cd21226da41a652bbf21557307bf7e4904fa1524.zip | |
Make some doc strings bidi-friendly.
cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
editfns.c (Fline_beginning_position, Fline_end_position): State
in the doc strings that start and end of line are in the logical order.
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cmds.c b/src/cmds.c index 7d54f46aeb4..4cb6ca199e7 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -113,7 +113,8 @@ right or to the left on the screen. This is in contrast with | |||
| 113 | 113 | ||
| 114 | DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "^p", | 114 | DEFUN ("forward-line", Fforward_line, Sforward_line, 0, 1, "^p", |
| 115 | doc: /* Move N lines forward (backward if N is negative). | 115 | doc: /* Move N lines forward (backward if N is negative). |
| 116 | Precisely, if point is on line I, move to the start of line I + N. | 116 | Precisely, if point is on line I, move to the start of line I + N |
| 117 | \("start of line" in the logical order). | ||
| 117 | If there isn't room, go as far as possible (no error). | 118 | If there isn't room, go as far as possible (no error). |
| 118 | Returns the count of lines left to move. If moving forward, | 119 | Returns the count of lines left to move. If moving forward, |
| 119 | that is N - number of lines moved; if backward, N + number moved. | 120 | that is N - number of lines moved; if backward, N + number moved. |
| @@ -157,7 +158,7 @@ successfully moved (for the return value). */) | |||
| 157 | } | 158 | } |
| 158 | 159 | ||
| 159 | DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 0, 1, "^p", | 160 | DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 0, 1, "^p", |
| 160 | doc: /* Move point to beginning of current line. | 161 | doc: /* Move point to beginning of current line (in the logical order). |
| 161 | With argument N not nil or 1, move forward N - 1 lines first. | 162 | With argument N not nil or 1, move forward N - 1 lines first. |
| 162 | If point reaches the beginning or end of buffer, it stops there. | 163 | If point reaches the beginning or end of buffer, it stops there. |
| 163 | 164 | ||
| @@ -181,7 +182,7 @@ instead. For instance, `(forward-line 0)' does the same thing as | |||
| 181 | } | 182 | } |
| 182 | 183 | ||
| 183 | DEFUN ("end-of-line", Fend_of_line, Send_of_line, 0, 1, "^p", | 184 | DEFUN ("end-of-line", Fend_of_line, Send_of_line, 0, 1, "^p", |
| 184 | doc: /* Move point to end of current line. | 185 | doc: /* Move point to end of current line (in the logical order). |
| 185 | With argument N not nil or 1, move forward N - 1 lines first. | 186 | With argument N not nil or 1, move forward N - 1 lines first. |
| 186 | If point reaches the beginning or end of buffer, it stops there. | 187 | If point reaches the beginning or end of buffer, it stops there. |
| 187 | To ignore intangibility, bind `inhibit-point-motion-hooks' to t. | 188 | To ignore intangibility, bind `inhibit-point-motion-hooks' to t. |