]> git.eshelyaron.com Git - emacs.git/commitdiff
Enlarge NSTATICS to 0x650.
authorEli Zaretskii <eliz@gnu.org>
Fri, 22 Jun 2012 06:51:06 +0000 (09:51 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 22 Jun 2012 06:51:06 +0000 (09:51 +0300)
 src/alloc.c (NSTATICS): Enlarge to 0x650.  Otherwise, Emacs compiled
 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
 aborts in staticpro during startup.  (Without -DBYTE_CODE_METER,
 staticidx goes up to 1597 out of 1600 = 0x640.)

src/ChangeLog
src/alloc.c

index 69f11e5a614a86aca0fd75bbd0f6f456843daece..128b05e0e7a8777d59d54c23387c763ffbcebcd9 100644 (file)
@@ -1,3 +1,10 @@
+2012-06-22  Eli Zaretskii  <eliz@gnu.org>
+
+       * alloc.c (NSTATICS): Enlarge to 0x650.  Otherwise, Emacs compiled
+       with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
+       aborts in staticpro during startup.  (Without -DBYTE_CODE_METER,
+       staticidx goes up to 1597 out of 1600 = 0x640.)
+
 2012-06-20  Paul Eggert  <eggert@cs.ucla.edu>
 
        * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
index 7af3b17078e634286116c6ad07724cc9b522a4ed..aba76386dd6d3b282cae9fb983c9c4f79bf8fdb9 100644 (file)
@@ -431,7 +431,7 @@ struct gcpro *gcprolist;
 /* Addresses of staticpro'd variables.  Initialize it to a nonzero
    value; otherwise some compilers put it into BSS.  */
 
-#define NSTATICS 0x640
+#define NSTATICS 0x650
 static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag};
 
 /* Index of next unused slot in staticvec.  */