aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2012-07-04 09:52:51 -0700
committerPaul Eggert2012-07-04 09:52:51 -0700
commit356e7178d24ca37e1b75c68489117001229725fe (patch)
tree4c6fff04ece2c9285a8d2edba920815aac5ab086 /src/alloc.c
parent95f61aa29aa5c38bbcb6f0f67741f0c04d21ba45 (diff)
downloademacs-356e7178d24ca37e1b75c68489117001229725fe.tar.gz
emacs-356e7178d24ca37e1b75c68489117001229725fe.zip
* alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
that causes compilation to fail on pre-C99 compilers.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
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)
3060#define PSEUDOVECTOR_NBYTES(vector) \ 3060#define PSEUDOVECTOR_NBYTES(vector) \
3061 (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_FREE) \ 3061 (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_FREE) \
3062 ? vector->header.size & PSEUDOVECTOR_SIZE_MASK \ 3062 ? vector->header.size & PSEUDOVECTOR_SIZE_MASK \
3063 : vector->header.next.nbytes); 3063 : vector->header.next.nbytes)
3064 3064
3065/* Reclaim space used by unmarked vectors. */ 3065/* Reclaim space used by unmarked vectors. */
3066 3066