1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 09:51:22 -08:00

(handle_USR1_signal, handle_USR2_signal) Clear

input_event with bzero.
(main): Call init_window.
This commit is contained in:
Gerd Moellmann 2000-07-04 18:57:38 +00:00
parent 7ccbba4cce
commit 75816372d2

View file

@ -294,11 +294,9 @@ handle_USR1_signal (sig)
{
struct input_event buf;
bzero (&buf, sizeof buf);
buf.kind = user_signal;
buf.code = 0;
buf.frame_or_window = selected_frame;
buf.modifiers = 0;
buf.timestamp = 0;
kbd_buffer_store_event (&buf);
}
@ -311,11 +309,10 @@ handle_USR2_signal (sig)
{
struct input_event buf;
bzero (&buf, sizeof buf);
buf.kind = user_signal;
buf.code = 1;
buf.frame_or_window = selected_frame;
buf.modifiers = 0;
buf.timestamp = 0;
kbd_buffer_store_event (&buf);
}
@ -1429,6 +1426,7 @@ main (argc, argv, envp)
#ifdef HAVE_SOUND
init_sound ();
#endif
init_window ();
if (!initialized)
{