1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-13 06:50:39 -08:00

Reapply "Use message1_nolog for GC messages"

This reverts commit a13a6340bd.
This commit is contained in:
Gerd Möllmann 2024-04-27 18:31:25 +02:00
parent a13a6340bd
commit 5a63e02c99

View file

@ -2482,8 +2482,12 @@ process_messages (struct igc *gc)
}
else if (type == mps_message_type_gc_start ())
{
const char *why = mps_message_gc_start_why (gc->arena, msg);
fprintf (stderr, "*** MPS GC start: %s\n", why);
if (garbage_collection_messages)
{
message1_nolog ("Garbage collecting...");
const char *why = mps_message_gc_start_why (gc->arena, msg);
message1_nolog (why);
}
}
mps_message_discard (gc->arena, msg);