aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c6
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);