aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNoam Postavsky2018-07-09 20:03:30 -0400
committerNoam Postavsky2018-07-09 20:03:30 -0400
commit7bcb697e198cb314980b93862a79e892009088c4 (patch)
tree17f30ba3b4aa4f1e4e31dde58139a5ec0ae82080 /doc
parent3307353e13a9226d477c9b1a39baae76584b90b9 (diff)
parent65889a6d127fcbbbdc1e74d26036e91bd24d1405 (diff)
downloademacs-7bcb697e198cb314980b93862a79e892009088c4.tar.gz
emacs-7bcb697e198cb314980b93862a79e892009088c4.zip
Merge from emacs-26
65889a6d12 Fix bootstrap infloop in GNU/Linux alpha 48efd1c98b Minor fix of a recent documentation change 3302b7cd7f Mention the NSM in the gnutls variable doc strings 40c2ce743b Remove test code from last commit e02d8e29c6 Fix Bug#32084 da5d6dbe39 Fix (length NON-SEQUENCE) documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/sequences.texi12
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}
76This function returns the number of elements in @var{sequence}. If 77This function returns the number of elements in @var{sequence}. The
77@var{sequence} is a dotted list, a @code{wrong-type-argument} error is 78function signals the @code{wrong-type-argument} error if the argument
78signaled; if it is a circular list, a @code{circular-list} error is 79is not a sequence or is a dotted list; it signals the
79signaled. 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
80than the maximum Emacs character code. 81char-table, the value returned is always one more than the maximum
82Emacs 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