aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Paul Wallington2002-10-05 04:08:13 +0000
committerJohn Paul Wallington2002-10-05 04:08:13 +0000
commitf5965adaeb349d6f727c52f8637ff51983e7a0b8 (patch)
tree219b1860eb9002312b4411ce77c66ff07648e631 /src
parent48e9072d7ea33ca55adee9b305448111e1cc479d (diff)
downloademacs-f5965adaeb349d6f727c52f8637ff51983e7a0b8.tar.gz
emacs-f5965adaeb349d6f727c52f8637ff51983e7a0b8.zip
(Flength): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/fns.c4
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 @@
12002-10-05 John Paul Wallington <jpw@shootybangbang.com>
2
3 * fns.c (Flength): Doc fix.
4
12002-10-04 Steven Tamm <steventamm@mac.com> 52002-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
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. */)
121DEFUN ("length", Flength, Slength, 1, 1, 0, 121DEFUN ("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.
123A byte-code function object is also allowed. 123A byte-code function object is also allowed.
124If the string contains multibyte characters, this is not the necessarily 124If the string contains multibyte characters, this is not necessarily
125the number of bytes in the string; it is the number of characters. 125the number of bytes in the string; it is the number of characters.
126To get the number of bytes, use `string-bytes'. */) 126To 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. */
448static Lisp_Object 448static Lisp_Object
449copy_sub_char_table (arg) 449copy_sub_char_table (arg)