aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-16 16:21:38 +0000
committerRichard M. Stallman1997-08-16 16:21:38 +0000
commit0c57d6fdaea1a9412a485b21ab5fcc3b505edbc3 (patch)
treeaf80aae938d1066327dd152de80e451ebca5eaf3 /src
parent389ebc1310113080df5d5edfb9eb232cc8efe859 (diff)
downloademacs-0c57d6fdaea1a9412a485b21ab5fcc3b505edbc3.tar.gz
emacs-0c57d6fdaea1a9412a485b21ab5fcc3b505edbc3.zip
(Flength): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 8a76dcd1cff..11c552a5f77 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -106,7 +106,10 @@ With argument t, set the random number seed from the current time and pid.")
106 106
107DEFUN ("length", Flength, Slength, 1, 1, 0, 107DEFUN ("length", Flength, Slength, 1, 1, 0,
108 "Return the length of vector, list or string SEQUENCE.\n\ 108 "Return the length of vector, list or string SEQUENCE.\n\
109A byte-code function object is also allowed.") 109A byte-code function object is also allowed.\n\
110If the string contains multibyte characters, this is not the necessarily\n\
111the number of characters in the string; it is the number of bytes.\n\
112To get the number of characters, use `chars-in-string'")
110 (sequence) 113 (sequence)
111 register Lisp_Object sequence; 114 register Lisp_Object sequence;
112{ 115{