X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/12fbe7552ce1614d54728736ea11a75fc5e0761f..afb8aa2482db730a8ebdabe314c320c01dda383c:/src/alloc.c diff --git a/src/alloc.c b/src/alloc.c index 0afe446d26..257e4fdd5e 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 0x650 +#define NSTATICS 0x1000 static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag}; /* Index of next unused slot in staticvec. */ @@ -5030,7 +5030,7 @@ staticpro (Lisp_Object *varaddress) { staticvec[staticidx++] = varaddress; if (staticidx >= NSTATICS) - emacs_abort (); + fatal ("NSTATICS too small; try increasing and recompiling Emacs."); }