diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/sequences.texi | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 777b1cbbffb..b98889eb099 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi | |||
| @@ -71,13 +71,15 @@ string, bool-vector, or char-table, @code{nil} otherwise. | |||
| 71 | @cindex list length | 71 | @cindex list length |
| 72 | @cindex vector length | 72 | @cindex vector length |
| 73 | @cindex sequence length | 73 | @cindex sequence length |
| 74 | @cindex bool-vector length | ||
| 74 | @cindex char-table length | 75 | @cindex char-table length |
| 75 | @anchor{Definition of length} | 76 | @anchor{Definition of length} |
| 76 | This function returns the number of elements in @var{sequence}. If | 77 | This function returns the number of elements in @var{sequence}. The |
| 77 | @var{sequence} is a dotted list, a @code{wrong-type-argument} error is | 78 | function signals the @code{wrong-type-argument} error if the argument |
| 78 | signaled; if it is a circular list, a @code{circular-list} error is | 79 | is not a sequence or is a dotted list; it signals the |
| 79 | signaled. For a char-table, the value returned is always one more | 80 | @code{circular-list} error if the argument is a circular list. For a |
| 80 | than the maximum Emacs character code. | 81 | char-table, the value returned is always one more than the maximum |
| 82 | Emacs character code. | ||
| 81 | 83 | ||
| 82 | @xref{Definition of safe-length}, for the related function @code{safe-length}. | 84 | @xref{Definition of safe-length}, for the related function @code{safe-length}. |
| 83 | 85 | ||