]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in previous change
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 3 Mar 2019 07:02:01 +0000 (23:02 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 3 Mar 2019 07:02:22 +0000 (23:02 -0800)
* src/alloc.c (memory_full_cons_threshold):
Move to after definition of struct cons_block.
Problem reported by Basil L. Contovounesios in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg00067.html

src/alloc.c

index 9b3dc4be9938dc0b3ed3f8e301671acd78ad34e8..6b3664855505a6b544deb89ec6672b5135a811af 100644 (file)
@@ -231,11 +231,6 @@ byte_ct consing_since_gc;
 
 byte_ct gc_relative_threshold;
 
-/* Minimum number of bytes of consing since GC before next GC,
-   when memory is full.  */
-
-byte_ct const memory_full_cons_threshold = sizeof (struct cons_block);
-
 #ifdef HAVE_PDUMPER
 /* Number of finalizers run: used to loop over GC until we stop
    generating garbage.  */
@@ -2754,6 +2749,11 @@ struct cons_block
 #define XUNMARK_CONS(fptr) \
   UNSETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
 
+/* Minimum number of bytes of consing since GC before next GC,
+   when memory is full.  */
+
+byte_ct const memory_full_cons_threshold = sizeof (struct cons_block);
+
 /* Current cons_block.  */
 
 static struct cons_block *cons_block;