]> git.eshelyaron.com Git - emacs.git/commitdiff
(Flength): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sat, 16 Aug 1997 16:21:38 +0000 (16:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 16 Aug 1997 16:21:38 +0000 (16:21 +0000)
src/fns.c

index 8a76dcd1cff6ff1f55ebf472230aa54698f682a8..11c552a5f77f317c4cfe14c52ad8b22d6749f1ca 100644 (file)
--- 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.")
 
 DEFUN ("length", Flength, Slength, 1, 1, 0,
   "Return the length of vector, list or string SEQUENCE.\n\
-A byte-code function object is also allowed.")
+A byte-code function object is also allowed.\n\
+If the string contains multibyte characters, this is not the necessarily\n\
+the number of characters in the string; it is the number of bytes.\n\
+To get the number of characters, use `chars-in-string'")
   (sequence)
      register Lisp_Object sequence;
 {