diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-02-10 00:35:15 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-02-10 00:35:15 +0000 |
commit | ffa3c9c3f00200d22d394059b7117bed35972f90 (patch) | |
tree | 07be5ec862df2893f9c99f390016d53dc6f65929 /src/alloc.c | |
parent | d41f8a38a1a0ac7d9f3486a25d9885f8dc556a13 (diff) | |
download | emacs-ffa3c9c3f00200d22d394059b7117bed35972f90.tar.gz |
(Fgarbage_collect): Save echo_area_glyphs_length.
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 3 |
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\ register struct backtrace *backlist; register Lisp_Object tem; char *omessage = echo_area_glyphs; + int omessage_length = echo_area_glyphs_length; char stack_top_variable; register int i; @@ -1374,7 +1375,7 @@ Garbage collection happens automatically if you cons more than\n\ gc_cons_threshold = 10000; if (omessage || minibuf_level > 0) - message1 (omessage); + message2 (omessage, omessage_length); else if (!noninteractive) message1 ("Garbage collecting...done"); |