diff options
| author | Dmitry Antipov | 2014-09-17 15:22:45 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-09-17 15:22:45 +0400 |
| commit | 70d0c024daffa6a0dc273ed38dc3691e12be6cc4 (patch) | |
| tree | f4e8b22021129a76b83141138c97136e68db5312 /src/alloc.c | |
| parent | 061184b8c63f214b9a8bd239055bd65a6a780a14 (diff) | |
| download | emacs-70d0c024daffa6a0dc273ed38dc3691e12be6cc4.tar.gz emacs-70d0c024daffa6a0dc273ed38dc3691e12be6cc4.zip | |
* alloc.c (local_vector_init): Remove useless INLINE.
Diffstat (limited to 'src/alloc.c')
| -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'. */) | |||
| 3325 | /* Initialize V with LENGTH objects each with value INIT, | 3325 | /* Initialize V with LENGTH objects each with value INIT, |
| 3326 | and return it tagged as a Lisp Object. */ | 3326 | and return it tagged as a Lisp Object. */ |
| 3327 | 3327 | ||
| 3328 | INLINE Lisp_Object | 3328 | Lisp_Object |
| 3329 | local_vector_init (struct Lisp_Vector *v, ptrdiff_t length, Lisp_Object init) | 3329 | local_vector_init (struct Lisp_Vector *v, ptrdiff_t length, Lisp_Object init) |
| 3330 | { | 3330 | { |
| 3331 | v->header.size = length; | 3331 | v->header.size = length; |