aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-06-21 00:25:57 +0000
committerJim Blandy1993-06-21 00:25:57 +0000
commit7d385b05698fdb0a4a0f3371610120105c88e00f (patch)
tree37ab87ee5c70bfbd103ec4948eec13030124146b /src
parent41a3409651dcbd21a2e31233da397bc6481fdf73 (diff)
downloademacs-7d385b05698fdb0a4a0f3371610120105c88e00f.tar.gz
emacs-7d385b05698fdb0a4a0f3371610120105c88e00f.zip
* alloc.c (Fgarbage_collect): If the minibuffer is active, don't
display the "...done" message; allow the minibuffer to show again.
Diffstat (limited to 'src')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index f47287d4b01..22153110480 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1358,7 +1358,7 @@ Garbage collection happens automatically if you cons more than\n\
1358 if (gc_cons_threshold < 10000) 1358 if (gc_cons_threshold < 10000)
1359 gc_cons_threshold = 10000; 1359 gc_cons_threshold = 10000;
1360 1360
1361 if (omessage) 1361 if (omessage || minibuf_level > 0)
1362 message1 (omessage); 1362 message1 (omessage);
1363 else if (!noninteractive) 1363 else if (!noninteractive)
1364 message1 ("Garbage collecting...done"); 1364 message1 ("Garbage collecting...done");