diff options
| author | Andreas Schwab | 1998-04-06 09:33:40 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-06 09:33:40 +0000 |
| commit | 96ced23cf1d9def449a3efed7c3fdaf15fabab5f (patch) | |
| tree | 00a01e9ec45050f4834feaaea51ea369f94045a8 /src | |
| parent | c1937d6a5e694e73944380a5f1f96b8cc884a2b1 (diff) | |
| download | emacs-96ced23cf1d9def449a3efed7c3fdaf15fabab5f.tar.gz emacs-96ced23cf1d9def449a3efed7c3fdaf15fabab5f.zip | |
(Flength): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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\ |
| 110 | A byte-code function object is also allowed.\n\ | 110 | A byte-code function object is also allowed.\n\ |
| 111 | If the string contains multibyte characters, this is not the necessarily\n\ | 111 | If the string contains multibyte characters, this is not the necessarily\n\ |
| 112 | the number of characters in the string; it is the number of bytes.\n\ | 112 | the number of bytes in the string; it is the number of characters.\n\ |
| 113 | To get the number of characters, use `chars-in-string'") | 113 | To get the number of bytes, use `string-bytes'") |
| 114 | (sequence) | 114 | (sequence) |
| 115 | register Lisp_Object sequence; | 115 | register Lisp_Object sequence; |
| 116 | { | 116 | { |