comparison src/alloc.c @ 18010:7a38a8767242

(Fmake_bool_vector): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Wed, 28 May 1997 17:19:16 +0000
parents 9238a2254a23
children b2a669ef69b1
comparison
equal deleted inserted replaced
18009:7c256846be75 18010:7a38a8767242
1128 *p = 0; 1128 *p = 0;
1129 return val; 1129 return val;
1130 } 1130 }
1131 1131
1132 DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, 1132 DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
1133 "Return a newly created bitstring of length LENGTH, with INIT as each element.\n\ 1133 "Return a new bool-vector of length LENGTH, using INIT for as each element.\n\
1134 Both LENGTH and INIT must be numbers. INIT matters only in whether it is t or nil.") 1134 LENGTH must be a number. INIT matters only in whether it is t or nil.")
1135 (length, init) 1135 (length, init)
1136 Lisp_Object length, init; 1136 Lisp_Object length, init;
1137 { 1137 {
1138 register Lisp_Object val; 1138 register Lisp_Object val;
1139 struct Lisp_Bool_Vector *p; 1139 struct Lisp_Bool_Vector *p;