aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 52565255a1d..2d87e1806f0 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -3029,22 +3029,6 @@ allocate_process ()
3029} 3029}
3030 3030
3031 3031
3032/* Only used for PVEC_WINDOW_CONFIGURATION. */
3033struct Lisp_Vector *
3034allocate_other_vector (len)
3035 EMACS_INT len;
3036{
3037 struct Lisp_Vector *v = allocate_vectorlike (len);
3038 EMACS_INT i;
3039
3040 for (i = 0; i < len; ++i)
3041 v->contents[i] = Qnil;
3042 v->size = len;
3043
3044 return v;
3045}
3046
3047
3048DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0, 3032DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
3049 doc: /* Return a newly created vector of length LENGTH, with each element being INIT. 3033 doc: /* Return a newly created vector of length LENGTH, with each element being INIT.
3050See also the function `vector'. */) 3034See also the function `vector'. */)