]> git.eshelyaron.com Git - emacs.git/commitdiff
* alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 4 Jul 2012 16:52:51 +0000 (09:52 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 4 Jul 2012 16:52:51 +0000 (09:52 -0700)
that causes compilation to fail on pre-C99 compilers.

src/ChangeLog
src/alloc.c

index ba9afdc7efc140ce522c6bbbb092234dce55d9ef..7f81f1e6b6828c67108c3308a2117fec159962bc 100644 (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)
index bd68f2b31f2952eb730a7f6a56e4765e24d1f08c..ed5d6b5099fabdb3fe898244fa92917b89b3aacf 100644 (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.  */