aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2012-10-19 08:43:12 +0200
committerEli Zaretskii2012-10-19 08:43:12 +0200
commitd282492862879e50bcbb8d10510da4a7a7f6eb4c (patch)
treea4d9257be0f09c4841bbc9ef2cf2823b0871ea0f
parentf60d391f5f8b3fbaa8ebe253afcf47b5ed9144f1 (diff)
downloademacs-d282492862879e50bcbb8d10510da4a7a7f6eb4c.tar.gz
emacs-d282492862879e50bcbb8d10510da4a7a7f6eb4c.zip
Decrease NSTATICS to 0x800.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/alloc.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4a4887579a7..cf7302914ab 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-10-19 Eli Zaretskii <eliz@gnu.org>
2
3 * alloc.c (NSTATICS): Decrease to 0x800.
4
12012-10-19 Stefan Monnier <monnier@iro.umontreal.ca> 52012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * fns.c (Fnreverse): Include the problem element when signalling an 7 * 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;
376/* Addresses of staticpro'd variables. Initialize it to a nonzero 376/* Addresses of staticpro'd variables. Initialize it to a nonzero
377 value; otherwise some compilers put it into BSS. */ 377 value; otherwise some compilers put it into BSS. */
378 378
379#define NSTATICS 0x1000 379#define NSTATICS 0x800
380static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag}; 380static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag};
381 381
382/* Index of next unused slot in staticvec. */ 382/* Index of next unused slot in staticvec. */