From: Richard M. Stallman Date: Wed, 28 May 1997 17:19:16 +0000 (+0000) Subject: (Fmake_bool_vector): Doc fix. X-Git-Tag: emacs-20.1~1936 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=41ab2240901e091dd07a2bac78a38a95454a6521;p=emacs.git (Fmake_bool_vector): Doc fix. --- diff --git a/src/alloc.c b/src/alloc.c index 12849fd90a6..c3fbc8b633c 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1130,8 +1130,8 @@ Both LENGTH and INIT must be numbers.") } DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, - "Return a newly created bitstring of length LENGTH, with INIT as each element.\n\ -Both LENGTH and INIT must be numbers. INIT matters only in whether it is t or nil.") + "Return a new bool-vector of length LENGTH, using INIT for as each element.\n\ +LENGTH must be a number. INIT matters only in whether it is t or nil.") (length, init) Lisp_Object length, init; {