aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorStefan Monnier2007-11-16 21:24:59 +0000
committerStefan Monnier2007-11-16 21:24:59 +0000
commit6d3f2bb282810d37331cf050993ea630f8e1f9c2 (patch)
treef2cedc27dd48a9799bb4a5a1ea14acb3dce02b0d /src/alloc.c
parentb05b4e2787f085af0ebdf2ed1705e5f4f799dee5 (diff)
downloademacs-6d3f2bb282810d37331cf050993ea630f8e1f9c2.tar.gz
emacs-6d3f2bb282810d37331cf050993ea630f8e1f9c2.zip
* alloc.c (allocate_other_vector):
* lisp.h (allocate_other_vector): Remove.
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'. */)