* alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'

that causes compilation to fail on pre-C99 compilers.
This commit is contained in:
Paul Eggert 2012-07-04 09:52:51 -07:00
parent 95f61aa29a
commit 356e7178d2
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
* alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
that causes compilation to fail on pre-C99 compilers.
2012-07-04 Juanma Barranquero <lekktu@gmail.com>
* s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)

View file

@ -3060,7 +3060,7 @@ allocate_vector_from_block (size_t nbytes)
#define PSEUDOVECTOR_NBYTES(vector) \
(PSEUDOVECTOR_TYPEP (&vector->header, PVEC_FREE) \
? vector->header.size & PSEUDOVECTOR_SIZE_MASK \
: vector->header.next.nbytes);
: vector->header.next.nbytes)
/* Reclaim space used by unmarked vectors. */