From d282492862879e50bcbb8d10510da4a7a7f6eb4c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 19 Oct 2012 08:43:12 +0200 Subject: [PATCH] Decrease NSTATICS to 0x800. --- src/ChangeLog | 4 ++++ src/alloc.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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. */ -- 2.39.2