Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7da0b0d3
Commit
7da0b0d3
authored
Dec 21, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fgarbage_collect):
Save message_enable_multibyte and pass it to message2_nolog.
parent
44461111
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/alloc.c
src/alloc.c
+4
-1
No files found.
src/alloc.c
View file @
7da0b0d3
...
...
@@ -189,6 +189,8 @@ Lisp_Object Qgc_cons_threshold, Qchar_table_extra_slots;
static
void
mark_object
(),
mark_buffer
(),
mark_kboards
();
static
void
clear_marks
(),
gc_sweep
();
static
void
compact_strings
();
extern
int
message_enable_multibyte
;
/* Versions of malloc and realloc that print warnings as memory gets full. */
...
...
@@ -1543,6 +1545,7 @@ Garbage collection happens automatically if you cons more than\n\
register
Lisp_Object
tem
;
char
*
omessage
=
echo_area_glyphs
;
int
omessage_length
=
echo_area_glyphs_length
;
int
oldmultibyte
=
message_enable_multibyte
;
char
stack_top_variable
;
register
int
i
;
...
...
@@ -1695,7 +1698,7 @@ Garbage collection happens automatically if you cons more than\n\
if
(
garbage_collection_messages
)
{
if
(
omessage
||
minibuf_level
>
0
)
message2_nolog
(
omessage
,
omessage_length
);
message2_nolog
(
omessage
,
omessage_length
,
oldmultibyte
);
else
message1_nolog
(
"Garbage collecting...done"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment