comparison src/alloc.c @ 68741:2892a36e596e

(Fmake_bool_vector, Fpurecopy): Doc fixes.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 09 Feb 2006 10:49:59 +0000
parents 47782d80f30b
children 977852fb2e3b b98066f4aa10 4b3d39451150
comparison
equal deleted inserted replaced
68740:0e55eddfde77 68741:2892a36e596e
2297 return val; 2297 return val;
2298 } 2298 }
2299 2299
2300 2300
2301 DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, 2301 DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
2302 doc: /* Return a new bool-vector of length LENGTH, using INIT for as each element. 2302 doc: /* Return a new bool-vector of length LENGTH, using INIT for each element.
2303 LENGTH must be a number. INIT matters only in whether it is t or nil. */) 2303 LENGTH must be a number. INIT matters only in whether it is t or nil. */)
2304 (length, init) 2304 (length, init)
2305 Lisp_Object length, init; 2305 Lisp_Object length, init;
2306 { 2306 {
2307 register Lisp_Object val; 2307 register Lisp_Object val;
4809 return new; 4809 return new;
4810 } 4810 }
4811 4811
4812 4812
4813 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, 4813 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
4814 doc: /* Make a copy of OBJECT in pure storage. 4814 doc: /* Make a copy of object OBJ in pure storage.
4815 Recursively copies contents of vectors and cons cells. 4815 Recursively copies contents of vectors and cons cells.
4816 Does not copy symbols. Copies strings without text properties. */) 4816 Does not copy symbols. Copies strings without text properties. */)
4817 (obj) 4817 (obj)
4818 register Lisp_Object obj; 4818 register Lisp_Object obj;
4819 { 4819 {