summaryrefslogtreecommitdiff
path: root/src/data.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-05-01 06:20:46 +0000
committerJim Blandy <jimb@redhat.com>1992-05-01 06:20:46 +0000
commit32676c085ce177af1e1e8ab61360c68772450af0 (patch)
tree6c8e9d6bc310b894409ae82fe957d1cd518c8e4d /src/data.c
parentd9a0f717d7057092d81b6cfc9acf06e3afcd13bd (diff)
downloademacs-32676c085ce177af1e1e8ab61360c68772450af0.tar.gz
*** empty log message ***
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)
#ifdef BSD4_1
sigrelse (SIGFPE);
#else /* not BSD4_1 */
- sigsetmask (SIGEMPTYMASK);
+ {
+ int dummy;
+
+ EMACS_SIGSETMASK (SIGEMPTYMASK, dummy);
+ }
#endif /* not BSD4_1 */
Fsignal (Qarith_error, Qnil);