diff options
| author | Jim Blandy | 1992-05-01 06:20:46 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-05-01 06:20:46 +0000 |
| commit | 32676c085ce177af1e1e8ab61360c68772450af0 (patch) | |
| tree | 6c8e9d6bc310b894409ae82fe957d1cd518c8e4d /src/floatfns.c | |
| parent | d9a0f717d7057092d81b6cfc9acf06e3afcd13bd (diff) | |
| download | emacs-32676c085ce177af1e1e8ab61360c68772450af0.tar.gz emacs-32676c085ce177af1e1e8ab61360c68772450af0.zip | |
*** empty log message ***
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index ed94c9ebafe..c99ba487e71 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -509,7 +509,11 @@ float_error (signo) | |||
| 509 | #ifdef BSD4_1 | 509 | #ifdef BSD4_1 |
| 510 | sigrelse (SIGILL); | 510 | sigrelse (SIGILL); |
| 511 | #else /* not BSD4_1 */ | 511 | #else /* not BSD4_1 */ |
| 512 | sigsetmask (0); | 512 | { |
| 513 | int dummy; | ||
| 514 | |||
| 515 | EMACS_SIGSETMASK (0, dummy); | ||
| 516 | } | ||
| 513 | #endif /* not BSD4_1 */ | 517 | #endif /* not BSD4_1 */ |
| 514 | #else | 518 | #else |
| 515 | /* Must reestablish handler each time it is called. */ | 519 | /* Must reestablish handler each time it is called. */ |