diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-11-16 21:24:59 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-11-16 21:24:59 +0000 |
commit | 6d3f2bb282810d37331cf050993ea630f8e1f9c2 (patch) | |
tree | f2cedc27dd48a9799bb4a5a1ea14acb3dce02b0d /src/alloc.c | |
parent | b05b4e2787f085af0ebdf2ed1705e5f4f799dee5 (diff) | |
download | emacs-6d3f2bb282810d37331cf050993ea630f8e1f9c2.tar.gz |
* alloc.c (allocate_other_vector):
* lisp.h (allocate_other_vector): Remove.
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 16 |
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 () } -/* 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'. */) |