diff options
| author | John Paul Wallington | 2002-10-05 04:08:13 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2002-10-05 04:08:13 +0000 |
| commit | f5965adaeb349d6f727c52f8637ff51983e7a0b8 (patch) | |
| tree | 219b1860eb9002312b4411ce77c66ff07648e631 /src | |
| parent | 48e9072d7ea33ca55adee9b305448111e1cc479d (diff) | |
| download | emacs-f5965adaeb349d6f727c52f8637ff51983e7a0b8.tar.gz emacs-f5965adaeb349d6f727c52f8637ff51983e7a0b8.zip | |
(Flength): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/fns.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 50149a01f05..7eac9ad5ddf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-10-05 John Paul Wallington <jpw@shootybangbang.com> | ||
| 2 | |||
| 3 | * fns.c (Flength): Doc fix. | ||
| 4 | |||
| 1 | 2002-10-04 Steven Tamm <steventamm@mac.com> | 5 | 2002-10-04 Steven Tamm <steventamm@mac.com> |
| 2 | 6 | ||
| 3 | * macterm.c (keycode_to_xkeysym_table): Change return to be | 7 | * macterm.c (keycode_to_xkeysym_table): Change return to be |
| @@ -18,7 +22,7 @@ | |||
| 18 | 22 | ||
| 19 | * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t. | 23 | * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t. |
| 20 | 24 | ||
| 21 | * w32fns.c (x_create_tip_frame): Likewise | 25 | * w32fns.c (x_create_tip_frame): Likewise. |
| 22 | 26 | ||
| 23 | * macfns.c (x_create_tip_frame): Likewise. | 27 | * macfns.c (x_create_tip_frame): Likewise. |
| 24 | 28 | ||
| @@ -121,7 +121,7 @@ With argument t, set the random number seed from the current time and pid. */) | |||
| 121 | DEFUN ("length", Flength, Slength, 1, 1, 0, | 121 | DEFUN ("length", Flength, Slength, 1, 1, 0, |
| 122 | doc: /* Return the length of vector, list or string SEQUENCE. | 122 | doc: /* Return the length of vector, list or string SEQUENCE. |
| 123 | A byte-code function object is also allowed. | 123 | A byte-code function object is also allowed. |
| 124 | If the string contains multibyte characters, this is not the necessarily | 124 | If the string contains multibyte characters, this is not necessarily |
| 125 | the number of bytes in the string; it is the number of characters. | 125 | the number of bytes in the string; it is the number of characters. |
| 126 | To get the number of bytes, use `string-bytes'. */) | 126 | To get the number of bytes, use `string-bytes'. */) |
| 127 | (sequence) | 127 | (sequence) |
| @@ -443,7 +443,7 @@ usage: (vconcat &rest SEQUENCES) */) | |||
| 443 | return concat (nargs, args, Lisp_Vectorlike, 0); | 443 | return concat (nargs, args, Lisp_Vectorlike, 0); |
| 444 | } | 444 | } |
| 445 | 445 | ||
| 446 | /* Retrun a copy of a sub char table ARG. The elements except for a | 446 | /* Return a copy of a sub char table ARG. The elements except for a |
| 447 | nested sub char table are not copied. */ | 447 | nested sub char table are not copied. */ |
| 448 | static Lisp_Object | 448 | static Lisp_Object |
| 449 | copy_sub_char_table (arg) | 449 | copy_sub_char_table (arg) |