From 691c4285c562c1a7aec980b780cbdfe4b608a6a0 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 11 Jan 1995 02:04:58 +0000 Subject: [PATCH] (Fgarbage_collect): Don't log the GC message. --- src/alloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/alloc.c b/src/alloc.c index 64b7a11e3f2..9aa947fca94 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1261,7 +1261,7 @@ Garbage collection happens automatically if you cons more than\n\ #endif /* MAX_SAVE_STACK > 0 */ if (!noninteractive) - message1 ("Garbage collecting..."); + message1_nolog ("Garbage collecting..."); /* Don't keep command history around forever */ tem = Fnthcdr (make_number (30), Vcommand_history); @@ -1376,9 +1376,9 @@ Garbage collection happens automatically if you cons more than\n\ gc_cons_threshold = 10000; if (omessage || minibuf_level > 0) - message2 (omessage, omessage_length); + message2_nolog (omessage, omessage_length); else if (!noninteractive) - message1 ("Garbage collecting...done"); + message1_nolog ("Garbage collecting...done"); return Fcons (Fcons (make_number (total_conses), make_number (total_free_conses)), -- 2.39.5