# HG changeset patch # User Richard M. Stallman # Date 841615715 0 # Node ID b69d8517497ade6eb5273606aee5956e6cca9d07 # Parent 2402c860793bbe00a62e02722140615634772bfd (record_asynch_buffer_change, gobble_input): Use sigblock instead of sigblockx. diff -r 2402c860793b -r b69d8517497a src/keyboard.c --- a/src/keyboard.c Sun Sep 01 22:08:12 1996 +0000 +++ b/src/keyboard.c Sun Sep 01 22:08:35 1996 +0000 @@ -4691,7 +4691,7 @@ if (interrupt_input) { SIGMASKTYPE mask; - mask = sigblockx (SIGIO); + mask = sigblock (sigmask (SIGIO)); read_avail_input (expected); sigsetmask (mask); } @@ -4700,7 +4700,7 @@ if (read_socket_hook && !interrupt_input && poll_suppress_count == 0) { SIGMASKTYPE mask; - mask = sigblockx (SIGALRM); + mask = sigblock (sigmask (SIGALRM)); read_avail_input (expected); sigsetmask (mask); } @@ -4740,7 +4740,7 @@ if (interrupt_input) { SIGMASKTYPE mask; - mask = sigblockx (SIGIO); + mask = sigblock (sigmask (SIGIO)); kbd_buffer_store_event (&event); sigsetmask (mask); }