aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorJuanma Barranquero2006-02-09 10:49:59 +0000
committerJuanma Barranquero2006-02-09 10:49:59 +0000
commit909e3b3323035616155f5e8fd833c5a1431fe448 (patch)
tree45d3b78a354c3fae7c1978b725e85fd7248443a8 /src/alloc.c
parentbf54d814520785e8299cfe6d7ce445304703b492 (diff)
downloademacs-909e3b3323035616155f5e8fd833c5a1431fe448.tar.gz
emacs-909e3b3323035616155f5e8fd833c5a1431fe448.zip
(Fmake_bool_vector, Fpurecopy): Doc fixes.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
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. */)
2299 2299
2300 2300
2301DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, 2301DEFUN ("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.
2303LENGTH must be a number. INIT matters only in whether it is t or nil. */) 2303LENGTH 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;
@@ -4811,7 +4811,7 @@ make_pure_vector (len)
4811 4811
4812 4812
4813DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, 4813DEFUN ("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.
4815Recursively copies contents of vectors and cons cells. 4815Recursively copies contents of vectors and cons cells.
4816Does not copy symbols. Copies strings without text properties. */) 4816Does not copy symbols. Copies strings without text properties. */)
4817 (obj) 4817 (obj)