emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108868: * alloc.c (PSEUDOVECTOR_NBYT


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108868: * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray '; '
Date: Wed, 04 Jul 2012 09:52:51 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108868
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Wed 2012-07-04 09:52:51 -0700
message:
  * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
  
  that causes compilation to fail on pre-C99 compilers.
modified:
  src/ChangeLog
  src/alloc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-07-04 16:46:42 +0000
+++ b/src/ChangeLog     2012-07-04 16:52:51 +0000
@@ -1,3 +1,8 @@
+2012-07-04  Paul Eggert  <address@hidden>
+
+       * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
+       that causes compilation to fail on pre-C99 compilers.
+
 2012-07-04  Juanma Barranquero <address@hidden>
 
        * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)

=== modified file 'src/alloc.c'
--- a/src/alloc.c       2012-07-04 14:38:02 +0000
+++ b/src/alloc.c       2012-07-04 16:52:51 +0000
@@ -3060,7 +3060,7 @@
 #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.  */
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]