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/data.c | |
| parent | d9a0f717d7057092d81b6cfc9acf06e3afcd13bd (diff) | |
| download | emacs-32676c085ce177af1e1e8ab61360c68772450af0.tar.gz emacs-32676c085ce177af1e1e8ab61360c68772450af0.zip | |
*** empty log message ***
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 4e95494d593..48af4ec9149 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1959,7 +1959,11 @@ arith_error (signo) | |||
| 1959 | #ifdef BSD4_1 | 1959 | #ifdef BSD4_1 |
| 1960 | sigrelse (SIGFPE); | 1960 | sigrelse (SIGFPE); |
| 1961 | #else /* not BSD4_1 */ | 1961 | #else /* not BSD4_1 */ |
| 1962 | sigsetmask (SIGEMPTYMASK); | 1962 | { |
| 1963 | int dummy; | ||
| 1964 | |||
| 1965 | EMACS_SIGSETMASK (SIGEMPTYMASK, dummy); | ||
| 1966 | } | ||
| 1963 | #endif /* not BSD4_1 */ | 1967 | #endif /* not BSD4_1 */ |
| 1964 | 1968 | ||
| 1965 | Fsignal (Qarith_error, Qnil); | 1969 | Fsignal (Qarith_error, Qnil); |