]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_bool_vector): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Wed, 28 May 1997 17:19:16 +0000 (17:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 28 May 1997 17:19:16 +0000 (17:19 +0000)
src/alloc.c

index 12849fd90a6f8d2bb0c1ce2d25c12f888a266f58..c3fbc8b633ca58128837abc2a8e1ae83fe29b4f9 100644 (file)
@@ -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;
 {