aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 7bd7c5b613a..26a1e3ea48d 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -109,8 +109,8 @@ DEFUN ("length", Flength, Slength, 1, 1, 0,
109 "Return the length of vector, list or string SEQUENCE.\n\ 109 "Return the length of vector, list or string SEQUENCE.\n\
110A byte-code function object is also allowed.\n\ 110A byte-code function object is also allowed.\n\
111If the string contains multibyte characters, this is not the necessarily\n\ 111If the string contains multibyte characters, this is not the necessarily\n\
112the number of characters in the string; it is the number of bytes.\n\ 112the number of bytes in the string; it is the number of characters.\n\
113To get the number of characters, use `chars-in-string'") 113To get the number of bytes, use `string-bytes'")
114 (sequence) 114 (sequence)
115 register Lisp_Object sequence; 115 register Lisp_Object sequence;
116{ 116{