X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=man%2Flispref%2Fsequences.texi;h=43bab702fb3e32164ee2847280b72708df69a1d5;hb=e18fa168a51a40835317350701f33f4034a5d3bc;hp=54b2d95acd50658dac2ef729f7c9c36cd50d27e0;hpb=d3dd71489ab2730d79536ebdc3c56cca82766e9d;p=chise%2Fxemacs-chise.git.1 diff --git a/man/lispref/sequences.texi b/man/lispref/sequences.texi index 54b2d95..43bab70 100644 --- a/man/lispref/sequences.texi +++ b/man/lispref/sequences.texi @@ -264,7 +264,7 @@ strings for such applications, for four reasons: @item They usually occupy one-fourth the space of a vector of the same elements. (This is one-eighth the space for 64-bit machines such as the -DEC Alpha, and may also be different when @sc{MULE} support is compiled +DEC Alpha, and may also be different when @sc{mule} support is compiled into XEmacs.) @item @@ -603,9 +603,9 @@ This function returns @code{t} if @var{object} is a bit vector. This function returns @code{t} if @var{object} is either 0 or 1. @end defun -@defun bit-vector &rest objects +@defun bit-vector &rest bits This function creates and returns a bit vector whose elements are the -arguments @var{objects}. The elements must be either of the two +arguments @var{bits}. Each argument must be a bit, i.e. one of the two integers 0 or 1. @example @@ -618,9 +618,10 @@ integers 0 or 1. @end example @end defun -@defun make-bit-vector length object +@defun make-bit-vector length bit This function creates and returns a bit vector consisting of -@var{length} elements, each initialized to @var{object}. +@var{length} elements, each initialized to @var{bit}, which must be +one of the two integers 0 or 1. @example @group