diff options
| author | Richard M. Stallman | 1997-08-16 16:21:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-16 16:21:38 +0000 |
| commit | 0c57d6fdaea1a9412a485b21ab5fcc3b505edbc3 (patch) | |
| tree | af80aae938d1066327dd152de80e451ebca5eaf3 /src | |
| parent | 389ebc1310113080df5d5edfb9eb232cc8efe859 (diff) | |
| download | emacs-0c57d6fdaea1a9412a485b21ab5fcc3b505edbc3.tar.gz emacs-0c57d6fdaea1a9412a485b21ab5fcc3b505edbc3.zip | |
(Flength): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 5 |
1 files changed, 4 insertions, 1 deletions
| @@ -106,7 +106,10 @@ With argument t, set the random number seed from the current time and pid.") | |||
| 106 | 106 | ||
| 107 | DEFUN ("length", Flength, Slength, 1, 1, 0, | 107 | DEFUN ("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\ |
| 109 | A byte-code function object is also allowed.") | 109 | A byte-code function object is also allowed.\n\ |
| 110 | If the string contains multibyte characters, this is not the necessarily\n\ | ||
| 111 | the number of characters in the string; it is the number of bytes.\n\ | ||
| 112 | To 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 | { |