diff options
| author | Karl Heuer | 1995-01-11 02:04:58 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-11 02:04:58 +0000 |
| commit | 691c4285c562c1a7aec980b780cbdfe4b608a6a0 (patch) | |
| tree | 79f01fbc1f56623ddb51fa681e918de09bf7c09f /src/alloc.c | |
| parent | 0b1005ef3c6ba945d5009e1734dfc653e59bce14 (diff) | |
| download | emacs-691c4285c562c1a7aec980b780cbdfe4b608a6a0.tar.gz emacs-691c4285c562c1a7aec980b780cbdfe4b608a6a0.zip | |
(Fgarbage_collect): Don't log the GC message.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 6 |
1 files 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\ | |||
| 1261 | #endif /* MAX_SAVE_STACK > 0 */ | 1261 | #endif /* MAX_SAVE_STACK > 0 */ |
| 1262 | 1262 | ||
| 1263 | if (!noninteractive) | 1263 | if (!noninteractive) |
| 1264 | message1 ("Garbage collecting..."); | 1264 | message1_nolog ("Garbage collecting..."); |
| 1265 | 1265 | ||
| 1266 | /* Don't keep command history around forever */ | 1266 | /* Don't keep command history around forever */ |
| 1267 | tem = Fnthcdr (make_number (30), Vcommand_history); | 1267 | tem = Fnthcdr (make_number (30), Vcommand_history); |
| @@ -1376,9 +1376,9 @@ Garbage collection happens automatically if you cons more than\n\ | |||
| 1376 | gc_cons_threshold = 10000; | 1376 | gc_cons_threshold = 10000; |
| 1377 | 1377 | ||
| 1378 | if (omessage || minibuf_level > 0) | 1378 | if (omessage || minibuf_level > 0) |
| 1379 | message2 (omessage, omessage_length); | 1379 | message2_nolog (omessage, omessage_length); |
| 1380 | else if (!noninteractive) | 1380 | else if (!noninteractive) |
| 1381 | message1 ("Garbage collecting...done"); | 1381 | message1_nolog ("Garbage collecting...done"); |
| 1382 | 1382 | ||
| 1383 | return Fcons (Fcons (make_number (total_conses), | 1383 | return Fcons (Fcons (make_number (total_conses), |
| 1384 | make_number (total_free_conses)), | 1384 | make_number (total_free_conses)), |