emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108676: Enlarge NSTATICS to 0x650.


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108676: Enlarge NSTATICS to 0x650.
Date: Fri, 22 Jun 2012 09:51:06 +0300
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108676
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2012-06-22 09:51:06 +0300
message:
  Enlarge NSTATICS to 0x650.
  
   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.)
modified:
  src/ChangeLog
  src/alloc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-06-20 21:20:06 +0000
+++ b/src/ChangeLog     2012-06-22 06:51:06 +0000
@@ -1,3 +1,10 @@
+2012-06-22  Eli Zaretskii  <address@hidden>
+
+       * 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  <address@hidden>
 
        * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.

=== modified file 'src/alloc.c'
--- a/src/alloc.c       2012-06-19 16:56:28 +0000
+++ b/src/alloc.c       2012-06-22 06:51:06 +0000
@@ -431,7 +431,7 @@
 /* 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.  */


reply via email to

[Prev in Thread] Current Thread [Next in Thread]