mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-04 19:10:37 -08:00
(record_asynch_buffer_change, gobble_input):
Use sigblock instead of sigblockx.
This commit is contained in:
parent
645280b72c
commit
4f8aaa7480
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue