From: Juanma Barranquero Date: Thu, 9 Feb 2006 10:49:59 +0000 (+0000) Subject: (Fmake_bool_vector, Fpurecopy): Doc fixes. X-Git-Tag: emacs-pretest-22.0.90~4265 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=909e3b3323035616155f5e8fd833c5a1431fe448;p=emacs.git (Fmake_bool_vector, Fpurecopy): Doc fixes. --- diff --git a/src/alloc.c b/src/alloc.c index 01c12f954b7..0276f85f1fe 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -2299,7 +2299,7 @@ INIT must be an integer that represents a character. */) DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, - doc: /* Return a new bool-vector of length LENGTH, using INIT for as each element. + doc: /* Return a new bool-vector of length LENGTH, using INIT for each element. LENGTH must be a number. INIT matters only in whether it is t or nil. */) (length, init) Lisp_Object length, init; @@ -4811,7 +4811,7 @@ make_pure_vector (len) DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, - doc: /* Make a copy of OBJECT in pure storage. + doc: /* Make a copy of object OBJ in pure storage. Recursively copies contents of vectors and cons cells. Does not copy symbols. Copies strings without text properties. */) (obj)