Mercurial > emacs
changeset 3851:dbdcbcbe910a
* alloc.c (Fgarbage_collect): If the minibuffer is active, don't
display the "...done" message; allow the minibuffer to show again.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 21 Jun 1993 00:25:57 +0000 |
parents | 1c084fa7c501 |
children | e365900ca7e7 |
files | src/alloc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Sun Jun 20 22:45:13 1993 +0000 +++ b/src/alloc.c Mon Jun 21 00:25:57 1993 +0000 @@ -1358,7 +1358,7 @@ if (gc_cons_threshold < 10000) gc_cons_threshold = 10000; - if (omessage) + if (omessage || minibuf_level > 0) message1 (omessage); else if (!noninteractive) message1 ("Garbage collecting...done");