aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-28 17:19:16 +0000
committerRichard M. Stallman1997-05-28 17:19:16 +0000
commit41ab2240901e091dd07a2bac78a38a95454a6521 (patch)
tree995281d78e06c36a5a7ea714f8b40176f075808a /src/alloc.c
parent6a99d31d41095c5623d7485a99167a956f73a5e3 (diff)
downloademacs-41ab2240901e091dd07a2bac78a38a95454a6521.tar.gz
emacs-41ab2240901e091dd07a2bac78a38a95454a6521.zip
(Fmake_bool_vector): Doc fix.
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 12849fd90a6..c3fbc8b633c 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1130,8 +1130,8 @@ Both LENGTH and INIT must be numbers.")
1130} 1130}
1131 1131
1132DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, 1132DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
1133 "Return a newly created bitstring of length LENGTH, with INIT as each element.\n\ 1133 "Return a new bool-vector of length LENGTH, using INIT for as each element.\n\
1134Both LENGTH and INIT must be numbers. INIT matters only in whether it is t or nil.") 1134LENGTH must be a number. INIT matters only in whether it is t or nil.")
1135 (length, init) 1135 (length, init)
1136 Lisp_Object length, init; 1136 Lisp_Object length, init;
1137{ 1137{