From: Karl Heuer Date: Wed, 11 Jan 1995 02:04:58 +0000 (+0000) Subject: (Fgarbage_collect): Don't log the GC message. X-Git-Tag: emacs-19.34~5463 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=691c4285c562c1a7aec980b780cbdfe4b608a6a0;p=emacs.git (Fgarbage_collect): Don't log the GC message. --- 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)),