Mercurial > emacs
diff src/sysdep.c @ 624:2bb7f23b7ea5
*** empty log message ***
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Fri, 01 May 1992 06:20:46 +0000 |
| parents | eca8812e61cd |
| children | 40b255f55df3 |
line wrap: on
line diff
--- a/src/sysdep.c Thu Apr 30 10:37:15 1992 +0000 +++ b/src/sysdep.c Fri May 01 06:20:46 1992 +0000 @@ -638,7 +638,11 @@ request_sigio () { #ifdef SIGWINCH - sigunblock (sigmask (SIGWINCH)); + { + int dummy; + + EMACS_SIGUNBLOCKX (SIGWINCH, dummy); + } #endif fcntl (0, F_SETFL, old_fcntl_flags | FASYNC); @@ -648,7 +652,11 @@ unrequest_sigio () { #ifdef SIGWINCH - sigblock (sigmask (SIGWINCH)); + { + int dummy; + + EMACS_SIGBLOCK (SIGWINCH, dummy); + } #endif fcntl (0, F_SETFL, old_fcntl_flags); interrupts_deferred = 1;
