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/lread.c | |
| parent | 806b00cb5f5034343709319bc217059fa382df19 (diff) | |
| download | emacs-a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53.tar.gz emacs-a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53.zip | |
Fix typos.
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |