]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix (length CIRCULAR) documentation
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 6 Jul 2018 17:59:53 +0000 (10:59 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 6 Jul 2018 18:00:22 +0000 (11:00 -0700)
* doc/lispref/sequences.texi (Sequence Functions):
Correct documentation of what (length X) does when
X is a circular list.

doc/lispref/sequences.texi

index 76a4a46888004c4a752ce61e9919b464cba55255..59faf2b4f1ed77008edb9b362660553f95ad0fb3 100644 (file)
@@ -75,9 +75,9 @@ string, bool-vector, or char-table, @code{nil} otherwise.
 @anchor{Definition of length}
 This function returns the number of elements in @var{sequence}.  If
 @var{sequence} is a dotted list, a @code{wrong-type-argument} error is
-signaled.  Circular lists may cause an infinite loop.  For a
-char-table, the value returned is always one more than the maximum
-Emacs character code.
+signaled; if it is a circular list, a @code{circular-list} error is
+signaled.  For a char-table, the value returned is always one more
+than the maximum Emacs character code.
 
 @xref{Definition of safe-length}, for the related function @code{safe-length}.