Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6524291c
Commit
6524291c
authored
Jun 01, 1998
by
Karl Heuer
Browse files
(main): Test `initialized' before clearing *Messages*.
parent
42d720cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
src/emacs.c
src/emacs.c
+8
-5
No files found.
src/emacs.c
View file @
6524291c
...
...
@@ -1009,11 +1009,14 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
symbol
=
intern
(
"default-enable-multibyte-characters"
);
Fset
(
symbol
,
Qnil
);
/* Erase pre-dump messages in *Messages* now so no abort. */
old_log_max
=
Vmessage_log_max
;
XSETFASTINT
(
Vmessage_log_max
,
0
);
message_dolog
(
""
,
0
,
1
,
0
);
Vmessage_log_max
=
old_log_max
;
if
(
initialized
)
{
/* Erase pre-dump messages in *Messages* now so no abort. */
old_log_max
=
Vmessage_log_max
;
XSETFASTINT
(
Vmessage_log_max
,
0
);
message_dolog
(
""
,
0
,
1
,
0
);
Vmessage_log_max
=
old_log_max
;
}
for
(
tail
=
Vbuffer_alist
;
CONSP
(
tail
);
tail
=
XCONS
(
tail
)
->
cdr
)
...
...
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