]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_bool_vector, Fpurecopy): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 9 Feb 2006 10:49:59 +0000 (10:49 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 9 Feb 2006 10:49:59 +0000 (10:49 +0000)
src/alloc.c

index 01c12f954b7a101d754cb3b6e8ae11912a5e3d61..0276f85f1fed8c75af2d71f66ab33f03ab27b544 100644 (file)
@@ -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)