Mercurial > emacs
comparison lispref/sequences.texi @ 38019:59051c56859f
Fix typo.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 11 Jun 2001 09:33:32 +0000 |
parents | ce8c496b524d |
children | 72006230a5d8 |
comparison
equal
deleted
inserted
replaced
38018:f802bdff6c2c | 38019:59051c56859f |
---|---|
692 There are two special functions for working with bool-vectors; aside | 692 There are two special functions for working with bool-vectors; aside |
693 from that, you manipulate them with same functions used for other kinds | 693 from that, you manipulate them with same functions used for other kinds |
694 of arrays. | 694 of arrays. |
695 | 695 |
696 @defun make-bool-vector length initial | 696 @defun make-bool-vector length initial |
697 Return a new book-vector of @var{length} elements, | 697 Return a new bool-vector of @var{length} elements, |
698 each one initialized to @var{initial}. | 698 each one initialized to @var{initial}. |
699 @end defun | 699 @end defun |
700 | 700 |
701 @defun bool-vector-p object | 701 @defun bool-vector-p object |
702 This returns @code{t} if @var{object} is a bool-vector, | 702 This returns @code{t} if @var{object} is a bool-vector, |