changeset 30176:baf1c4a71548

(handle_USR2_signal, handle_USR1_signal): Use USER_SIGNAL_EVENT.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 13 Jul 2000 14:07:19 +0000
parents 67c99cc46d03
children 78677e36a8a3
files src/emacs.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/emacs.c	Thu Jul 13 14:07:07 2000 +0000
+++ b/src/emacs.c	Thu Jul 13 14:07:19 2000 +0000
@@ -295,7 +295,7 @@
   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 @@
   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;