aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 14b0a7b8381..0548a09cb8b 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -3866,7 +3866,7 @@ memory_full (size_t nbytes)
3866 if (! enough_free_memory) 3866 if (! enough_free_memory)
3867 { 3867 {
3868 Vmemory_full = Qt; 3868 Vmemory_full = Qt;
3869 consing_until_gc = memory_full_cons_threshold; 3869 consing_until_gc = min (consing_until_gc, memory_full_cons_threshold);
3870 3870
3871 /* The first time we get here, free the spare memory. */ 3871 /* The first time we get here, free the spare memory. */
3872 for (int i = 0; i < ARRAYELTS (spare_memory); i++) 3872 for (int i = 0; i < ARRAYELTS (spare_memory); i++)