diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2014-09-17 15:22:45 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2014-09-17 15:22:45 +0400 |
commit | 70d0c024daffa6a0dc273ed38dc3691e12be6cc4 (patch) | |
tree | f4e8b22021129a76b83141138c97136e68db5312 | |
parent | 061184b8c63f214b9a8bd239055bd65a6a780a14 (diff) | |
download | emacs-70d0c024daffa6a0dc273ed38dc3691e12be6cc4.tar.gz |
* alloc.c (local_vector_init): Remove useless INLINE.
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index aa5849fee48..d28db1e58b8 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -3325,7 +3325,7 @@ See also the function `vector'. */) /* Initialize V with LENGTH objects each with value INIT, and return it tagged as a Lisp Object. */ -INLINE Lisp_Object +Lisp_Object local_vector_init (struct Lisp_Vector *v, ptrdiff_t length, Lisp_Object init) { v->header.size = length; |