From 6d3f2bb282810d37331cf050993ea630f8e1f9c2 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 16 Nov 2007 21:24:59 +0000 Subject: * alloc.c (allocate_other_vector): * lisp.h (allocate_other_vector): Remove. --- src/alloc.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/alloc.c') 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 () } -/* Only used for PVEC_WINDOW_CONFIGURATION. */ -struct Lisp_Vector * -allocate_other_vector (len) - EMACS_INT len; -{ - struct Lisp_Vector *v = allocate_vectorlike (len); - EMACS_INT i; - - for (i = 0; i < len; ++i) - v->contents[i] = Qnil; - v->size = len; - - return v; -} - - DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0, doc: /* Return a newly created vector of length LENGTH, with each element being INIT. See also the function `vector'. */) -- cgit v1.2.1