]> git.eshelyaron.com Git - emacs.git/commitdiff
(record_asynch_buffer_change, gobble_input):
authorRichard M. Stallman <rms@gnu.org>
Sun, 1 Sep 1996 22:08:35 +0000 (22:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 1 Sep 1996 22:08:35 +0000 (22:08 +0000)
Use sigblock instead of sigblockx.

src/keyboard.c

index c8fe99008cd4a21d0f453cdec1017bd5e672d6d7..9c854a046cc93ad8e96636887e36394718dd07cb 100644 (file)
@@ -4691,7 +4691,7 @@ gobble_input (expected)
   if (interrupt_input)
     {
       SIGMASKTYPE mask;
-      mask = sigblockx (SIGIO);
+      mask = sigblock (sigmask (SIGIO));
       read_avail_input (expected);
       sigsetmask (mask);
     }
@@ -4700,7 +4700,7 @@ gobble_input (expected)
   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 @@ record_asynch_buffer_change ()
   if (interrupt_input)
     {
       SIGMASKTYPE mask;
-      mask = sigblockx (SIGIO);
+      mask = sigblock (sigmask (SIGIO));
       kbd_buffer_store_event (&event);
       sigsetmask (mask);
     }