aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 666f77bfce1..258a3d1aaf2 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6849,11 +6849,10 @@ mark_glyph_matrix (struct glyph_matrix *matrix)
6849 } 6849 }
6850} 6850}
6851 6851
6852/* Whether to remember a few of the last marked values for debugging. */
6853#define GC_REMEMBER_LAST_MARKED 0
6854
6855#if GC_REMEMBER_LAST_MARKED 6852#if GC_REMEMBER_LAST_MARKED
6853/* Remember a few of the last marked values for debugging purposes. */
6856enum { LAST_MARKED_SIZE = 1 << 9 }; /* Must be a power of 2. */ 6854enum { LAST_MARKED_SIZE = 1 << 9 }; /* Must be a power of 2. */
6855extern Lisp_Object last_marked[LAST_MARKED_SIZE];
6857Lisp_Object last_marked[LAST_MARKED_SIZE] EXTERNALLY_VISIBLE; 6856Lisp_Object last_marked[LAST_MARKED_SIZE] EXTERNALLY_VISIBLE;
6858static int last_marked_index; 6857static int last_marked_index;
6859#endif 6858#endif