# HG changeset patch # User Gerd Moellmann # Date 963497239 0 # Node ID baf1c4a71548f9dd07ecce44165b784510aac2a6 # Parent 67c99cc46d03feb84d90dbc8dc2abc0b4510b91c (handle_USR2_signal, handle_USR1_signal): Use USER_SIGNAL_EVENT. diff -r 67c99cc46d03 -r baf1c4a71548 src/emacs.c --- 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;