From 5b50dae19cacd5b39e5f08a1381e6d527ebc688c Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 13 Jul 2000 14:07:19 +0000 Subject: [PATCH] (handle_USR2_signal, handle_USR1_signal): Use USER_SIGNAL_EVENT. --- src/emacs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emacs.c b/src/emacs.c index 4ea48459165..ede00238fa0 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -295,7 +295,7 @@ handle_USR1_signal (sig) struct input_event buf; bzero (&buf, sizeof buf); - buf.kind = user_signal; + buf.kind = USER_SIGNAL_EVENT; buf.frame_or_window = selected_frame; kbd_buffer_store_event (&buf); @@ -310,7 +310,7 @@ handle_USR2_signal (sig) struct input_event buf; bzero (&buf, sizeof buf); - buf.kind = user_signal; + buf.kind = USER_SIGNAL_EVENT; buf.code = 1; buf.frame_or_window = selected_frame; -- 2.39.2