diff options
| author | Juanma Barranquero | 2011-09-28 02:59:28 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-09-28 02:59:28 +0200 |
| commit | a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53 (patch) | |
| tree | 4681de90248ac2638553a48df80ef5d2f24200d7 /src | |
| parent | 806b00cb5f5034343709319bc217059fa382df19 (diff) | |
| download | emacs-a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53.tar.gz emacs-a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53.zip | |
Fix typos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog.11 | 2 | ||||
| -rw-r--r-- | src/ChangeLog.9 | 2 | ||||
| -rw-r--r-- | src/lread.c | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dd2e7256476..c6a321de2dd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-09-28 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * lread.c (Fread_from_string): Fix typo in docstring. | ||
| 4 | |||
| 1 | 2011-09-27 Eli Zaretskii <eliz@gnu.org> | 5 | 2011-09-27 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (handle_invisible_prop): If invisible text ends on a | 7 | * xdisp.c (handle_invisible_prop): If invisible text ends on a |
diff --git a/src/ChangeLog.11 b/src/ChangeLog.11 index b64736459c8..0a9df7d1aee 100644 --- a/src/ChangeLog.11 +++ b/src/ChangeLog.11 | |||
| @@ -4547,7 +4547,7 @@ | |||
| 4547 | 4547 | ||
| 4548 | * composite.c (composition_compute_stop_pos): In forward search, | 4548 | * composite.c (composition_compute_stop_pos): In forward search, |
| 4549 | pay attention to the possibility that some character after ENDPOS | 4549 | pay attention to the possibility that some character after ENDPOS |
| 4550 | will be composed with charactrs before ENDPOS. | 4550 | will be composed with characters before ENDPOS. |
| 4551 | 4551 | ||
| 4552 | 2010-08-24 Chong Yidong <cyd@stupidchicken.com> | 4552 | 2010-08-24 Chong Yidong <cyd@stupidchicken.com> |
| 4553 | 4553 | ||
diff --git a/src/ChangeLog.9 b/src/ChangeLog.9 index f25434087c1..ceec5da3296 100644 --- a/src/ChangeLog.9 +++ b/src/ChangeLog.9 | |||
| @@ -10460,7 +10460,7 @@ | |||
| 10460 | (Fkey_description): Likewise. | 10460 | (Fkey_description): Likewise. |
| 10461 | 10461 | ||
| 10462 | * lread.c (read1): On reading multibyte string, be sure to make | 10462 | * lread.c (read1): On reading multibyte string, be sure to make |
| 10463 | all 8-bit chararacters in valid multibyte form. | 10463 | all 8-bit characters in valid multibyte form. |
| 10464 | (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally. | 10464 | (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally. |
| 10465 | 10465 | ||
| 10466 | * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE | 10466 | * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE |
diff --git a/src/lread.c b/src/lread.c index 241b1e41c94..af737d27070 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1966,7 +1966,7 @@ DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0, | |||
| 1966 | doc: /* Read one Lisp expression which is represented as text by STRING. | 1966 | doc: /* Read one Lisp expression which is represented as text by STRING. |
| 1967 | Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX). | 1967 | Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX). |
| 1968 | FINAL-STRING-INDEX is an integer giving the position of the next | 1968 | FINAL-STRING-INDEX is an integer giving the position of the next |
| 1969 | remaining chararacter in STRING. | 1969 | remaining character in STRING. |
| 1970 | START and END optionally delimit a substring of STRING from which to read; | 1970 | START and END optionally delimit a substring of STRING from which to read; |
| 1971 | they default to 0 and (length STRING) respectively. */) | 1971 | they default to 0 and (length STRING) respectively. */) |
| 1972 | (Lisp_Object string, Lisp_Object start, Lisp_Object end) | 1972 | (Lisp_Object string, Lisp_Object start, Lisp_Object end) |