diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/cmds.c | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 608e6b28395..8bf8d723e3e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-06-07 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings. | ||
| 4 | (Fforward_line, Fbeginning_of_line): Reflow docstrings. | ||
| 5 | |||
| 1 | 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | Remove BSTRING related code, all platforms define it. | 8 | Remove BSTRING related code, all platforms define it. |
diff --git a/src/cmds.c b/src/cmds.c index 1fdd3729d68..ba89c532be8 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -62,7 +62,7 @@ On reaching end or beginning of buffer, stop and signal error. | |||
| 62 | 62 | ||
| 63 | Depending on the bidirectional context, the movement may be to the | 63 | Depending on the bidirectional context, the movement may be to the |
| 64 | right or to the left on the screen. This is in contrast with | 64 | right or to the left on the screen. This is in contrast with |
| 65 | \\[right-arrow-command], which see. */) | 65 | \\[right-char], which see. */) |
| 66 | (n) | 66 | (n) |
| 67 | Lisp_Object n; | 67 | Lisp_Object n; |
| 68 | { | 68 | { |
| @@ -102,7 +102,7 @@ On attempt to pass beginning or end of buffer, stop and signal error. | |||
| 102 | 102 | ||
| 103 | Depending on the bidirectional context, the movement may be to the | 103 | Depending on the bidirectional context, the movement may be to the |
| 104 | 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 |
| 105 | \\[left-arrow-command], which see. */) | 105 | \\[left-char], which see. */) |
| 106 | (n) | 106 | (n) |
| 107 | Lisp_Object n; | 107 | Lisp_Object n; |
| 108 | { | 108 | { |
| @@ -122,7 +122,7 @@ If there isn't room, go as far as possible (no error). | |||
| 122 | Returns the count of lines left to move. If moving forward, | 122 | Returns the count of lines left to move. If moving forward, |
| 123 | that is N - number of lines moved; if backward, N + number moved. | 123 | that is N - number of lines moved; if backward, N + number moved. |
| 124 | With positive N, a non-empty line at the end counts as one line | 124 | With positive N, a non-empty line at the end counts as one line |
| 125 | successfully moved (for the return value). */) | 125 | successfully moved (for the return value). */) |
| 126 | (n) | 126 | (n) |
| 127 | Lisp_Object n; | 127 | Lisp_Object n; |
| 128 | { | 128 | { |
| @@ -167,8 +167,8 @@ With argument N not nil or 1, move forward N - 1 lines first. | |||
| 167 | If point reaches the beginning or end of buffer, it stops there. | 167 | If point reaches the beginning or end of buffer, it stops there. |
| 168 | 168 | ||
| 169 | This function constrains point to the current field unless this moves | 169 | This function constrains point to the current field unless this moves |
| 170 | point to a different line than the original, unconstrained result. If | 170 | point to a different line than the original, unconstrained result. |
| 171 | N is nil or 1, and a front-sticky field starts at point, the point | 171 | If N is nil or 1, and a front-sticky field starts at point, the point |
| 172 | does not move. To ignore field boundaries bind | 172 | does not move. To ignore field boundaries bind |
| 173 | `inhibit-field-text-motion' to t, or use the `forward-line' function | 173 | `inhibit-field-text-motion' to t, or use the `forward-line' function |
| 174 | instead. For instance, `(forward-line 0)' does the same thing as | 174 | instead. For instance, `(forward-line 0)' does the same thing as |