From: Paul Eggert Date: Wed, 4 Jul 2012 16:52:51 +0000 (-0700) Subject: * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';' X-Git-Tag: emacs-24.2.90~1199^2~219 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=356e7178d24ca37e1b75c68489117001229725fe;p=emacs.git * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';' that causes compilation to fail on pre-C99 compilers. --- diff --git a/src/ChangeLog b/src/ChangeLog index ba9afdc7efc..7f81f1e6b68 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-07-04 Paul Eggert + + * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';' + that causes compilation to fail on pre-C99 compilers. + 2012-07-04 Juanma Barranquero * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY) diff --git a/src/alloc.c b/src/alloc.c index bd68f2b31f2..ed5d6b5099f 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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. */