From: Eli Zaretskii Date: Fri, 19 Oct 2012 06:43:12 +0000 (+0200) Subject: Decrease NSTATICS to 0x800. X-Git-Tag: emacs-24.2.90~217 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d282492862879e50bcbb8d10510da4a7a7f6eb4c;p=emacs.git Decrease NSTATICS to 0x800. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4a4887579a7..cf7302914ab 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2012-10-19 Eli Zaretskii + + * alloc.c (NSTATICS): Decrease to 0x800. + 2012-10-19 Stefan Monnier * fns.c (Fnreverse): Include the problem element when signalling an diff --git a/src/alloc.c b/src/alloc.c index 257e4fdd5e3..5bb528c64ab 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -376,7 +376,7 @@ struct gcpro *gcprolist; /* Addresses of staticpro'd variables. Initialize it to a nonzero value; otherwise some compilers put it into BSS. */ -#define NSTATICS 0x1000 +#define NSTATICS 0x800 static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag}; /* Index of next unused slot in staticvec. */