aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorKarl Heuer1994-02-10 00:35:15 +0000
committerKarl Heuer1994-02-10 00:35:15 +0000
commit51056d11c5b847cb203627df6ed39712530824c4 (patch)
tree06a3f9d987367a4c0424ec3ff3effae7227404b4 /src/alloc.c
parent7410477aeeb19908f67d629b2b21fe576da4aafa (diff)
downloademacs-51056d11c5b847cb203627df6ed39712530824c4.tar.gz
emacs-51056d11c5b847cb203627df6ed39712530824c4.zip
(Fgarbage_collect): Save echo_area_glyphs_length.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index dffff224d50..f7544ab0b7c 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1232,6 +1232,7 @@ Garbage collection happens automatically if you cons more than\n\
1232 register struct backtrace *backlist; 1232 register struct backtrace *backlist;
1233 register Lisp_Object tem; 1233 register Lisp_Object tem;
1234 char *omessage = echo_area_glyphs; 1234 char *omessage = echo_area_glyphs;
1235 int omessage_length = echo_area_glyphs_length;
1235 char stack_top_variable; 1236 char stack_top_variable;
1236 register int i; 1237 register int i;
1237 1238
@@ -1374,7 +1375,7 @@ Garbage collection happens automatically if you cons more than\n\
1374 gc_cons_threshold = 10000; 1375 gc_cons_threshold = 10000;
1375 1376
1376 if (omessage || minibuf_level > 0) 1377 if (omessage || minibuf_level > 0)
1377 message1 (omessage); 1378 message2 (omessage, omessage_length);
1378 else if (!noninteractive) 1379 else if (!noninteractive)
1379 message1 ("Garbage collecting...done"); 1380 message1 ("Garbage collecting...done");
1380 1381