diff src/keyboard.c @ 624:2bb7f23b7ea5

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Fri, 01 May 1992 06:20:46 +0000
parents c792b1df8110
children 40b255f55df3
line wrap: on
line diff
--- a/src/keyboard.c	Thu Apr 30 10:37:15 1992 +0000
+++ b/src/keyboard.c	Fri May 01 06:20:46 1992 +0000
@@ -2104,9 +2104,10 @@
 #ifdef SIGIO
   if (interrupt_input)
     {
-      SIGMASKTYPE mask = sigblockx (SIGIO);
+      SIGMASKTYPE mask;
+      EMACS_SIGBLOCKX (SIGIO, mask);
       read_avail_input (expected);
-      sigsetmask (mask);
+      EMACS_SIGSETMASK (mask, mask);
     }
   else
 #endif