diff options
author | John Paul Wallington <jpw@pobox.com> | 2002-10-05 04:08:13 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2002-10-05 04:08:13 +0000 |
commit | f5965adaeb349d6f727c52f8637ff51983e7a0b8 (patch) | |
tree | 219b1860eb9002312b4411ce77c66ff07648e631 /src/fns.c | |
parent | 48e9072d7ea33ca55adee9b305448111e1cc479d (diff) | |
download | emacs-f5965adaeb349d6f727c52f8637ff51983e7a0b8.tar.gz |
(Flength): Doc fix.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c index 786b61926ad..17b07a0a349 100644 --- a/src/fns.c +++ b/src/fns.c @@ -121,7 +121,7 @@ With argument t, set the random number seed from the current time and pid. */) DEFUN ("length", Flength, Slength, 1, 1, 0, doc: /* Return the length of vector, list or string SEQUENCE. A byte-code function object is also allowed. -If the string contains multibyte characters, this is not the necessarily +If the string contains multibyte characters, this is not necessarily the number of bytes in the string; it is the number of characters. To get the number of bytes, use `string-bytes'. */) (sequence) @@ -443,7 +443,7 @@ usage: (vconcat &rest SEQUENCES) */) return concat (nargs, args, Lisp_Vectorlike, 0); } -/* Retrun a copy of a sub char table ARG. The elements except for a +/* Return a copy of a sub char table ARG. The elements except for a nested sub char table are not copied. */ static Lisp_Object copy_sub_char_table (arg) |